/[imapfilter]/imapfilter/imapfilter.c
ViewVC logotype

Annotation of /imapfilter/imapfilter.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.22.2.1 - (hide annotations)
Wed Dec 5 09:55:12 2001 UTC (22 years, 3 months ago) by lefcha
Branch: release-0_7-patches
Changes since 1.22: +6 -3 lines
File MIME type: text/plain
Take into consideration namespace.

1 lefcha 1.1 #include <stdio.h>
2 lefcha 1.16 #include <stdlib.h>
3 lefcha 1.1 #include <unistd.h>
4     #include <string.h>
5 lefcha 1.7 #include <limits.h>
6 lefcha 1.11 #include <errno.h>
7 lefcha 1.1
8     #include "config.h"
9     #include "imapfilter.h"
10 lefcha 1.11 #include "data.h"
11 lefcha 1.1
12    
13 lefcha 1.7 extern account_t *accounts;
14 lefcha 1.11 extern filter_t *filters;
15 lefcha 1.7
16 lefcha 1.10 unsigned int options; /* Program options. */
17 lefcha 1.22.2.1 unsigned int capabilities; /* Capabilities of mail server. */
18 lefcha 1.5 char logfile[PATH_MAX]; /* Log file. */
19 lefcha 1.7
20 lefcha 1.1
21 lefcha 1.2 /*
22 lefcha 1.8 * In the beginning there was main()...
23 lefcha 1.2 */
24 lefcha 1.16 int main(int argc, char *argv[])
25 lefcha 1.1 {
26 lefcha 1.18 int c, r;
27 lefcha 1.11 char *confile = NULL; /* Configuration file. */
28     account_t *ca; /* Current account. */
29     mbox_t *cm; /* Current mailbox. */
30 lefcha 1.12
31 lefcha 1.22.2.1 options = (OPTION_DETAILS_NORMAL | OPTION_NAMESPACE);
32 lefcha 1.12 *logfile = 0;
33 lefcha 1.1
34 lefcha 1.11 while ((c = getopt(argc, argv, "c:hl:qv")) != -1) {
35 lefcha 1.1 switch (c) {
36 lefcha 1.3 case 'c':
37 lefcha 1.11 confile = optarg;
38 lefcha 1.3 break;
39 lefcha 1.2 case 'h':
40     usage();
41 lefcha 1.12 exit(ERROR_UNDEFINED);
42 lefcha 1.2 break;
43 lefcha 1.1 case 'l':
44 lefcha 1.12 strncat(logfile, optarg, PATH_MAX - 1);
45 lefcha 1.1 break;
46     case 'q':
47 lefcha 1.11 options &= OPTION_DETAILS_CLEAR;
48 lefcha 1.15 options |= OPTION_DETAILS_QUIET;
49 lefcha 1.1 break;
50     case 'v':
51 lefcha 1.11 options &= OPTION_DETAILS_CLEAR;
52     options |= OPTION_DETAILS_VERBOSE;
53 lefcha 1.1 break;
54     default:
55 lefcha 1.2 usage();
56 lefcha 1.12 exit(ERROR_UNDEFINED);
57 lefcha 1.1 break;
58     }
59     }
60 lefcha 1.13
61 lefcha 1.22.2.1 catch_signals();
62    
63 lefcha 1.12 read_config(confile);
64     open_logfile();
65 lefcha 1.21
66 lefcha 1.7 for (ca = accounts; ca; ca = ca->next) {
67    
68 lefcha 1.16 #ifndef SSL_TLS
69 lefcha 1.19 if (init_connection(ca->server, ca->port))
70 lefcha 1.16 #else
71 lefcha 1.19 if (init_connection(ca->server, ca->port, ca->ssl))
72 lefcha 1.16 #endif
73 lefcha 1.19 continue;
74 lefcha 1.21
75 lefcha 1.18 r = greeting_response();
76    
77     if (r == RESPONSE_BYE || check_capabilities())
78 lefcha 1.15 continue;
79 lefcha 1.1
80     #ifdef DEBUG
81 lefcha 1.11 test();
82 lefcha 1.1 #endif
83    
84 lefcha 1.18 if (r != RESPONSE_PREAUTH && login(ca->username, ca->password))
85 lefcha 1.15 continue;
86 lefcha 1.22.2.1
87     check_namespace();
88 lefcha 1.11
89 lefcha 1.14 for (cm = ca->mboxes; cm; cm = cm->next)
90 lefcha 1.15 if (!*cm->filters)
91     mailbox_status(cm->name);
92     else if (!select_mailbox(cm->name)) {
93     apply_filters(cm->filters);
94 lefcha 1.14 close_mailbox();
95     }
96 lefcha 1.11 logout();
97 lefcha 1.1
98 lefcha 1.5 close_connection();
99 lefcha 1.22 }
100 lefcha 1.17
101 lefcha 1.22 overwrite_passwords();
102 lefcha 1.13
103 lefcha 1.1 close_logfile();
104    
105     exit(0);
106     }
107    
108    
109     /*
110 lefcha 1.11 * Print a very brief usage message.
111 lefcha 1.2 */
112     void usage(void)
113     {
114     fprintf(stderr,
115 lefcha 1.11 "usage: imapfilter [-hqv] [-c configfile] [-l logfile]\n");
116 lefcha 1.1 }

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26