Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120837397
cyr_synclog.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
4 KB
Referenced Files
None
Subscribers
None
cyr_synclog.c
View Options
/* cyr_synclog.c -- add a line to the sync log file for replication
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Originally written by Bron Gondwana <brong@fastmail.fm>
*/
#include
<config.h>
#include
<stdio.h>
#include
<stdlib.h>
#ifdef HAVE_UNISTD_H
#include
<unistd.h>
#endif
#include
"exitcodes.h"
#include
"global.h"
#include
"sync_log.h"
#include
"util.h"
#include
"xmalloc.h"
int
main
(
int
argc
,
char
*
argv
[])
{
char
*
alt_config
=
NULL
;
char
cmd
=
'\0'
;
char
opt
;
if
((
geteuid
())
==
0
&&
(
become_cyrus
(
/*is_master*/
0
)
!=
0
))
{
fatal
(
"must run as the Cyrus user"
,
EC_USAGE
);
}
while
((
opt
=
getopt
(
argc
,
argv
,
"C:uUvmMacqnsb"
))
!=
EOF
)
{
switch
(
opt
)
{
case
'C'
:
/* alt config file */
alt_config
=
optarg
;
break
;
case
'u'
:
/* User */
cmd
=
'u'
;
break
;
case
'U'
:
/* UnUser */
cmd
=
'U'
;
break
;
case
'v'
:
/* sieVe */
cmd
=
'v'
;
break
;
case
'm'
:
/* Mailbox */
cmd
=
'm'
;
break
;
case
'M'
:
/* UnMailbox */
cmd
=
'M'
;
break
;
case
'a'
:
/* Append */
cmd
=
'a'
;
break
;
case
'c'
:
/* aCl */
cmd
=
'c'
;
break
;
case
'q'
:
/* Quota */
cmd
=
'q'
;
break
;
case
'n'
:
/* aNnotation */
cmd
=
'n'
;
break
;
case
's'
:
/* Seen */
cmd
=
's'
;
break
;
case
'b'
:
/* suBscription */
cmd
=
'b'
;
break
;
}
}
if
((
argc
-
optind
)
<
1
)
{
fprintf
(
stderr
,
"Usage: %s [-C altconfig] [-{type}] value
\n
"
,
argv
[
0
]);
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"types:
\n
"
);
fprintf
(
stderr
,
" -u USER
\n
"
);
fprintf
(
stderr
,
" -U UNUSER
\n
"
);
fprintf
(
stderr
,
" -v SIEVE
\n
"
);
fprintf
(
stderr
,
" -m MAILBOX
\n
"
);
fprintf
(
stderr
,
" -M UNMAILBOX
\n
"
);
fprintf
(
stderr
,
" -q QUOTA
\n
"
);
fprintf
(
stderr
,
" -n ANNOTATION
\n
"
);
fprintf
(
stderr
,
" -s SEEN
\n
"
);
fprintf
(
stderr
,
" -b SUBSCRIPTION
\n
"
);
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"You may omit the type flag and just specify a complete log line
\n
"
);
exit
(
-1
);
}
cyrus_init
(
alt_config
,
"cyr_synclog"
,
0
,
0
);
sync_log_init
();
switch
(
cmd
)
{
case
'u'
:
/* User */
sync_log_user
(
argv
[
optind
]);
break
;
case
'U'
:
/* UnUser */
sync_log_unuser
(
argv
[
optind
]);
break
;
case
'v'
:
/* sieVe */
sync_log_sieve
(
argv
[
optind
]);
break
;
case
'm'
:
/* Mailbox */
sync_log_mailbox
(
argv
[
optind
]);
break
;
case
'M'
:
/* UnMailbox */
sync_log_unmailbox
(
argv
[
optind
]);
break
;
case
'q'
:
/* Quota */
sync_log_quota
(
argv
[
optind
]);
break
;
case
'n'
:
/* aNnotation */
sync_log_annotation
(
argv
[
optind
]);
break
;
case
's'
:
/* Seen */
sync_log_seen
(
argv
[
optind
],
argv
[
optind
+
1
]);
break
;
case
'b'
:
/* suBscription */
sync_log_subscribe
(
argv
[
optind
],
argv
[
optind
+
1
]);
break
;
default
:
/* just as is! */
sync_log
(
argv
[
optind
]);
break
;
}
sync_log_done
();
cyrus_done
();
return
0
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Apr 24, 1:44 PM (2 d, 14 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
15/98/37bd88c230a0155a487f1d8f827c
Default Alt Text
cyr_synclog.c (4 KB)
Attached To
Mode
R111 cyrus-imapd
Attached
Detach File
Event Timeline