blob: 4f2d4124dc4c32faccb607f75347d6ad664533d0 [file] [log] [blame]
Denis Vlasenko239d06b2008-11-06 23:42:42 +00001/* vi: set sw=4 ts=4: */
2/*
3 * popmaildir: a simple yet powerful POP3 client
4 * Delivers contents of remote mailboxes to local Maildir
5 *
6 * Inspired by original utility by Nikola Vladov
7 *
8 * Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
9 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko239d06b2008-11-06 23:42:42 +000011 */
Denys Vlasenkoc19f7582016-11-23 09:58:03 +010012//config:config POPMAILDIR
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020013//config: bool "popmaildir (10 kb)"
Denys Vlasenkoc19f7582016-11-23 09:58:03 +010014//config: default y
15//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020016//config: Simple yet powerful POP3 mail popper. Delivers content
17//config: of remote mailboxes to local Maildir.
Denys Vlasenkoc19f7582016-11-23 09:58:03 +010018//config:
19//config:config FEATURE_POPMAILDIR_DELIVERY
20//config: bool "Allow message filters and custom delivery program"
21//config: default y
22//config: depends on POPMAILDIR
23//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020024//config: Allow to use a custom program to filter the content
25//config: of the message before actual delivery (-F "prog [args...]").
26//config: Allow to use a custom program for message actual delivery
27//config: (-M "prog [args...]").
Denys Vlasenkoc19f7582016-11-23 09:58:03 +010028
29//applet:IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP))
Pere Orga6a3e01d2011-04-01 22:56:30 +020030
Denys Vlasenkod616ab62011-05-22 03:46:33 +020031//kbuild:lib-$(CONFIG_POPMAILDIR) += popmaildir.o mail.o
32
Pere Orga6a3e01d2011-04-01 22:56:30 +020033//usage:#define popmaildir_trivial_usage
34//usage: "[OPTIONS] MAILDIR [CONN_HELPER ARGS]"
35//usage:#define popmaildir_full_usage "\n\n"
36//usage: "Fetch content of remote mailbox to local maildir\n"
Pere Orga6a3e01d2011-04-01 22:56:30 +020037/* //usage: "\n -b Binary mode. Ignored" */
38/* //usage: "\n -d Debug. Ignored" */
39/* //usage: "\n -m Show used memory. Ignored" */
40/* //usage: "\n -V Show version. Ignored" */
41/* //usage: "\n -c Use tcpclient. Ignored" */
42/* //usage: "\n -a Use APOP protocol. Implied. If server supports APOP -> use it" */
43//usage: "\n -s Skip authorization"
44//usage: "\n -T Get messages with TOP instead of RETR"
45//usage: "\n -k Keep retrieved messages on the server"
46//usage: "\n -t SEC Network timeout"
47//usage: IF_FEATURE_POPMAILDIR_DELIVERY(
Denys Vlasenkocefdd4b2018-01-14 20:48:14 +010048//usage: "\n -F 'PROG ARGS' Filter program (may be repeated)"
49//usage: "\n -M 'PROG ARGS' Delivery program"
Pere Orga6a3e01d2011-04-01 22:56:30 +020050//usage: )
51//usage: "\n"
52//usage: "\nFetch from plain POP3 server:"
53//usage: "\npopmaildir -k DIR nc pop3.server.com 110 <user_and_pass.txt"
54//usage: "\nFetch from SSLed POP3 server and delete fetched emails:"
55//usage: "\npopmaildir DIR -- openssl s_client -quiet -connect pop3.server.com:995 <user_and_pass.txt"
56/* //usage: "\n -R BYTES Remove old messages on the server >= BYTES. Ignored" */
57/* //usage: "\n -Z N1-N2 Remove messages from N1 to N2 (dangerous). Ignored" */
58/* //usage: "\n -L BYTES Don't retrieve new messages >= BYTES. Ignored" */
59/* //usage: "\n -H LINES Type first LINES of a message. Ignored" */
60//usage:
61//usage:#define popmaildir_example_usage
62//usage: "$ popmaildir -k ~/Maildir -- nc pop.drvv.ru 110 [<password_file]\n"
63//usage: "$ popmaildir ~/Maildir -- openssl s_client -quiet -connect pop.gmail.com:995 [<password_file]\n"
64
Denis Vlasenko239d06b2008-11-06 23:42:42 +000065#include "libbb.h"
66#include "mail.h"
67
68static void pop3_checkr(const char *fmt, const char *param, char **ret)
69{
Denys Vlasenko5707b522010-12-20 05:12:39 +010070 char *msg = send_mail_command(fmt, param);
Denis Vlasenko239d06b2008-11-06 23:42:42 +000071 char *answer = xmalloc_fgetline(stdin);
Denis Vlasenko4abaec52009-03-12 15:35:26 +000072 if (answer && '+' == answer[0]) {
Denys Vlasenko5707b522010-12-20 05:12:39 +010073 free(msg);
Denys Vlasenko25b26802020-12-17 12:24:50 +010074 if (G.timeout)
Denis Vlasenko239d06b2008-11-06 23:42:42 +000075 alarm(0);
Denis Vlasenko4abaec52009-03-12 15:35:26 +000076 if (ret) {
77 // skip "+OK "
78 memmove(answer, answer + 4, strlen(answer) - 4);
79 *ret = answer;
80 } else
Denis Vlasenko239d06b2008-11-06 23:42:42 +000081 free(answer);
82 return;
83 }
Denys Vlasenko5707b522010-12-20 05:12:39 +010084 bb_error_msg_and_die("%s failed, reply was: %s", msg, answer);
Denis Vlasenko239d06b2008-11-06 23:42:42 +000085}
86
87static void pop3_check(const char *fmt, const char *param)
88{
89 pop3_checkr(fmt, param, NULL);
90}
91
92int popmaildir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
93int popmaildir_main(int argc UNUSED_PARAM, char **argv)
94{
Denys Vlasenko25b26802020-12-17 12:24:50 +010095 unsigned opts;
Denis Vlasenko239d06b2008-11-06 23:42:42 +000096 char *buf;
97 unsigned nmsg;
98 char *hostname;
99 pid_t pid;
100 const char *retr;
101#if ENABLE_FEATURE_POPMAILDIR_DELIVERY
102 const char *delivery;
103#endif
104 unsigned opt_nlines = 0;
105
106 enum {
107 OPT_b = 1 << 0, // -b binary mode. Ignored
108 OPT_d = 1 << 1, // -d,-dd,-ddd debug. Ignored
109 OPT_m = 1 << 2, // -m show used memory. Ignored
110 OPT_V = 1 << 3, // -V version. Ignored
111 OPT_c = 1 << 4, // -c use tcpclient. Ignored
112 OPT_a = 1 << 5, // -a use APOP protocol
113 OPT_s = 1 << 6, // -s skip authorization
114 OPT_T = 1 << 7, // -T get messages with TOP instead with RETR
115 OPT_k = 1 << 8, // -k keep retrieved messages on the server
116 OPT_t = 1 << 9, // -t90 set timeout to 90 sec
117 OPT_R = 1 << 10, // -R20000 remove old messages on the server >= 20000 bytes (requires -k). Ignored
118 OPT_Z = 1 << 11, // -Z11-23 remove messages from 11 to 23 (dangerous). Ignored
119 OPT_L = 1 << 12, // -L50000 not retrieve new messages >= 50000 bytes. Ignored
120 OPT_H = 1 << 13, // -H30 type first 30 lines of a message; (-L12000 -H30). Ignored
121 OPT_M = 1 << 14, // -M\"program arg1 arg2 ...\"; deliver by program. Treated like -F
122 OPT_F = 1 << 15, // -F\"program arg1 arg2 ...\"; filter by program. Treated like -M
123 };
124
125 // init global variables
126 INIT_G();
127
128 // parse options
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200129 opts = getopt32(argv, "^"
130 "bdmVcasTkt:+" "R:+Z:L:+H:+" IF_FEATURE_POPMAILDIR_DELIVERY("M:F:")
131 "\0" "-1:dd",
Denys Vlasenko25b26802020-12-17 12:24:50 +0100132 &G.timeout, NULL, NULL, NULL, &opt_nlines
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000133 IF_FEATURE_POPMAILDIR_DELIVERY(, &delivery, &delivery) // we treat -M and -F the same
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000134 );
135 //argc -= optind;
136 argv += optind;
137
138 // get auth info
139 if (!(opts & OPT_s))
140 get_cred_or_die(STDIN_FILENO);
141
142 // goto maildir
143 xchdir(*argv++);
144
145 // launch connect helper, if any
146 if (*argv)
147 launch_helper((const char **)argv);
148
149 // get server greeting
150 pop3_checkr(NULL, NULL, &buf);
151
152 // authenticate (if no -s given)
153 if (!(opts & OPT_s)) {
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000154 // server supports APOP and we want it?
155 if ('<' == buf[0] && (opts & OPT_a)) {
156 union { // save a bit of stack
157 md5_ctx_t ctx;
158 char hex[16 * 2 + 1];
159 } md5;
Denys Vlasenko9a2d8992020-07-20 00:04:33 +0200160 uint32_t res[MD5_OUTSIZE / 4];
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000161
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000162 char *s = strchr(buf, '>');
163 if (s)
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000164 s[1] = '\0';
165 // get md5 sum of "<stamp>password" string
166 md5_begin(&md5.ctx);
Denys Vlasenkoc0683ac2010-10-16 20:45:27 +0200167 md5_hash(&md5.ctx, buf, strlen(buf));
168 md5_hash(&md5.ctx, G.pass, strlen(G.pass));
169 md5_end(&md5.ctx, res);
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000170 *bin2hex(md5.hex, (char*)res, 16) = '\0';
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000171 // APOP
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000172 s = xasprintf("%s %s", G.user, md5.hex);
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000173 pop3_check("APOP %s", s);
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000174 free(s);
175 free(buf);
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000176 // server ignores APOP -> use simple text authentication
177 } else {
178 // USER
179 pop3_check("USER %s", G.user);
180 // PASS
181 pop3_check("PASS %s", G.pass);
182 }
183 }
184
185 // get mailbox statistics
186 pop3_checkr("STAT", NULL, &buf);
187
188 // prepare message filename suffix
189 hostname = safe_gethostname();
190 pid = getpid();
191
192 // get messages counter
193 // NOTE: we don't use xatou(buf) since buf is "nmsg nbytes"
194 // we only need nmsg and atoi is just exactly what we need
195 // if atoi fails to convert buf into number it returns 0
196 // in this case the following loop simply will not be executed
197 nmsg = atoi(buf);
Denis Vlasenko4abaec52009-03-12 15:35:26 +0000198 free(buf);
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000199
200 // loop through messages
201 retr = (opts & OPT_T) ? xasprintf("TOP %%u %u", opt_nlines) : "RETR %u";
202 for (; nmsg; nmsg--) {
203
204 char *filename;
205 char *target;
206 char *answer;
207 FILE *fp;
208#if ENABLE_FEATURE_POPMAILDIR_DELIVERY
209 int rc;
210#endif
211 // generate unique filename
212 filename = xasprintf("tmp/%llu.%u.%s",
213 monotonic_us(), (unsigned)pid, hostname);
214
215 // retrieve message in ./tmp/ unless filter is specified
216 pop3_check(retr, (const char *)(ptrdiff_t)nmsg);
217
218#if ENABLE_FEATURE_POPMAILDIR_DELIVERY
219 // delivery helper ordered? -> setup pipe
220 if (opts & (OPT_F|OPT_M)) {
221 // helper will have $FILENAME set to filename
222 xsetenv("FILENAME", filename);
223 fp = popen(delivery, "w");
224 unsetenv("FILENAME");
225 if (!fp) {
James Byrne69374872019-07-02 11:35:03 +0200226 bb_simple_perror_msg("delivery helper");
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000227 break;
228 }
229 } else
230#endif
231 // create and open file filename
232 fp = xfopen_for_write(filename);
233
234 // copy stdin to fp (either filename or delivery helper)
235 while ((answer = xmalloc_fgets_str(stdin, "\r\n")) != NULL) {
236 char *s = answer;
237 if ('.' == answer[0]) {
238 if ('.' == answer[1])
239 s++;
240 else if ('\r' == answer[1] && '\n' == answer[2] && '\0' == answer[3])
241 break;
242 }
243 //*strchrnul(s, '\r') = '\n';
244 fputs(s, fp);
245 free(answer);
246 }
247
248#if ENABLE_FEATURE_POPMAILDIR_DELIVERY
249 // analyse delivery status
250 if (opts & (OPT_F|OPT_M)) {
251 rc = pclose(fp);
252 if (99 == rc) // 99 means bail out
253 break;
254// if (rc) // !0 means skip to the next message
255 goto skip;
256// // 0 means continue
257 } else {
258 // close filename
259 fclose(fp);
260 }
261#endif
262
263 // delete message from server
264 if (!(opts & OPT_k))
265 pop3_check("DELE %u", (const char*)(ptrdiff_t)nmsg);
266
267 // atomically move message to ./new/
268 target = xstrdup(filename);
Denys Vlasenko2ccd3522018-05-14 11:14:58 +0200269 memcpy(target, "new", 3);
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000270 // ... or just stop receiving on failure
271 if (rename_or_warn(filename, target))
272 break;
273 free(target);
274
275#if ENABLE_FEATURE_POPMAILDIR_DELIVERY
276 skip:
277#endif
278 free(filename);
279 }
280
281 // Bye
282 pop3_check("QUIT", NULL);
283
284 if (ENABLE_FEATURE_CLEAN_UP) {
285 free(G.user);
286 free(G.pass);
287 }
288
289 return EXIT_SUCCESS;
290}