1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Still more user commands.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
42 static char *_bang_buf
;
43 static size_t _bang_size
;
45 /* Modify subject we reply to to begin with Re: if it does not already */
46 static char * _reedit(char *subj
);
48 /* Expand the shell escape by expanding unescaped !'s into the last issued
49 * command where possible */
50 static void _bangexp(char **str
, size_t *size
);
52 static void make_ref_and_cs(struct message
*mp
, struct header
*head
);
54 /* `reply' and `Lreply' workhorse */
55 static int _list_reply(int *msgvec
, enum header_flags hf
);
57 /* Get PTF to implementation of command c (i.e., take care for *flipr*) */
58 static int (* _reply_or_Reply(char c
))(int *, bool_t
);
60 /* Reply to a single message. Extract each name from the message header and
61 * send them off to mail1() */
62 static int _reply(int *msgvec
, bool_t recipient_record
);
64 /* Reply to a series of messages by simply mailing to the senders and not
65 * messing around with the To: and Cc: lists as in normal reply */
66 static int _Reply(int *msgvec
, bool_t recipient_record
);
68 /* Forward a message to a new recipient, in the sense of RFC 2822 */
69 static int _fwd(char *str
, int recipient_record
);
71 /* Modify the subject we are replying to to begin with Fwd: */
72 static char * __fwdedit(char *subj
);
74 /* Do the real work of resending */
75 static int _resend1(void *v
, bool_t add_resent
);
78 static int _c_file(void *v
, enum fedit_mode fm
);
87 if (subj
== NULL
|| *subj
== '\0')
92 mime_fromhdr(&in
, &out
, TD_ISPR
| TD_ICONV
);
94 if ((newsubj
= subject_re_trim(out
.s
)) != out
.s
)
95 newsubj
= savestr(out
.s
);
97 /* RFC mandates english "Re: " */
98 newsubj
= salloc(out
.l
+ 4 +1);
99 sstpcpy(sstpcpy(newsubj
, "Re: "), out
.s
);
109 _bangexp(char **str
, size_t *size
)
114 size_t sz
, i
, j
, bangbufsize
;
117 dobang
= ok_blook(bang
);
119 bangbuf
= smalloc(bangbufsize
= *size
);
123 if ((*str
)[i
] == '!') {
124 sz
= strlen(_bang_buf
);
125 bangbuf
= srealloc(bangbuf
, bangbufsize
+= sz
);
127 memcpy(bangbuf
+ j
, _bang_buf
, sz
+ 1);
133 if ((*str
)[i
] == '\\' && (*str
)[i
+ 1] == '!') {
138 bangbuf
[j
++] = (*str
)[i
++];
142 printf("!%s\n", bangbuf
);
147 *str
= srealloc(*str
, *size
= sz
);
148 memcpy(*str
, bangbuf
, sz
);
150 _bang_buf
= srealloc(_bang_buf
, _bang_size
= sz
);
151 memcpy(_bang_buf
, bangbuf
, sz
);
157 make_ref_and_cs(struct message
*mp
, struct header
*head
) /* TODO rewrite FAST */
159 char *oldref
, *oldmsgid
, *newref
, *cp
;
160 size_t oldreflen
= 0, oldmsgidlen
= 0, reflen
;
165 oldref
= hfield1("references", mp
);
166 oldmsgid
= hfield1("message-id", mp
);
167 if (oldmsgid
== NULL
|| *oldmsgid
== '\0') {
174 oldreflen
= strlen(oldref
);
175 reflen
+= oldreflen
+ 2;
178 oldmsgidlen
= strlen(oldmsgid
);
179 reflen
+= oldmsgidlen
;
182 newref
= smalloc(reflen
);
183 if (oldref
!= NULL
) {
184 memcpy(newref
, oldref
, oldreflen
+1);
185 if (oldmsgid
!= NULL
) {
186 newref
[oldreflen
++] = ',';
187 newref
[oldreflen
++] = ' ';
188 memcpy(newref
+ oldreflen
, oldmsgid
, oldmsgidlen
+1);
191 memcpy(newref
, oldmsgid
, oldmsgidlen
+1);
192 n
= extract(newref
, GREF
);
195 /* Limit number of references TODO better on parser side */
196 while (n
->n_flink
!= NULL
)
198 for (i
= 1; i
<= REFERENCES_MAX
; ++i
) {
199 if (n
->n_blink
!= NULL
)
206 if (ok_blook(reply_in_same_charset
) &&
207 (cp
= hfield1("content-type", mp
)) != NULL
)
208 head
->h_charset
= mime_param_get("charset", cp
);
214 _list_reply(int *msgvec
, enum header_flags hf
)
218 char const *reply_to
, *rcv
, *cp
;
220 struct name
*rt
, *mft
, *np
;
224 /* TODO Since we may recur and do stuff with message lists we need to save
225 * TODO away the argument vector as long as that isn't done by machinery */
228 for (i
= 0; msgvec
[i
] != 0; ++i
)
231 save_msgvec
= ac_alloc(sizeof(*save_msgvec
) * i
);
233 save_msgvec
[i
] = msgvec
[i
];
234 msgvec
= save_msgvec
;
238 mp
= message
+ *msgvec
- 1;
242 memset(&head
, 0, sizeof head
);
245 head
.h_subject
= _reedit(hfield1("subject", mp
));
246 gf
= ok_blook(fullnames
) ? GFULL
: GSKIN
;
250 if ((reply_to
= hfield1("reply-to", mp
)) != NULL
&&
251 (cp
= ok_vlook(reply_to_honour
)) != NULL
&&
252 (rt
= checkaddrs(lextract(reply_to
, GTO
| gf
), EACM_STRICT
, NULL
)
254 char const *tr
= _("Reply-To %s%s");
255 size_t l
= strlen(tr
) + strlen(rt
->n_name
) + 3 +1;
256 char *sp
= salloc(l
);
258 snprintf(sp
, l
, tr
, rt
->n_name
, (rt
->n_flink
!= NULL
? "..." : n_empty
));
259 if (quadify(cp
, UIZ_MAX
, sp
, TRU1
) > FAL0
)
263 if (rcv
== NULL
&& (rcv
= hfield1("from", mp
)) == NULL
)
268 if (ok_blook(recipients_in_cc
) && (cp
= hfield1("to", mp
)) != NULL
)
269 np
= lextract(cp
, GCC
| gf
);
270 if ((cp
= hfield1("cc", mp
)) != NULL
)
271 np
= cat(np
, lextract(cp
, GCC
| gf
));
273 head
.h_cc
= delete_alternates(np
);
278 np
= (rcv
== reply_to
) ? namelist_dup(rt
, GTO
| gf
)
279 : lextract(rcv
, GTO
| gf
);
280 if (!ok_blook(recipients_in_cc
) && (cp
= hfield1("to", mp
)) != NULL
)
281 np
= cat(np
, lextract(cp
, GTO
| gf
));
282 /* Delete my name from reply list, and with it, all my alternate names */
283 np
= delete_alternates(np
);
285 np
= lextract(rcv
, GTO
| gf
);
288 /* The user may have send this to himself, don't ignore that */
289 namelist_vaporise_head(&head
, EACM_NORMAL
, FAL0
, NULL
);
290 if (head
.h_to
== NULL
)
293 /* Mail-Followup-To: */
295 if (ok_vlook(followup_to_honour
) != NULL
&&
296 (cp
= hfield1("mail-followup-to", mp
)) != NULL
&&
297 (mft
= np
= checkaddrs(lextract(cp
, GTO
| gf
), EACM_STRICT
, NULL
)
299 char const *tr
= _("Followup-To %s%s");
300 size_t l
= strlen(tr
) + strlen(np
->n_name
) + 3 +1;
301 char *sp
= salloc(l
);
303 snprintf(sp
, l
, tr
, np
->n_name
, (np
->n_flink
!= NULL
? "..." : n_empty
));
304 if (quadify(ok_vlook(followup_to_honour
), UIZ_MAX
, sp
, TRU1
) > FAL0
) {
308 mft
= namelist_vaporise_head(&head
, EACM_STRICT
, FAL0
, NULL
);
313 /* Special massage for list (follow-up) messages */
314 if (mft
!= NULL
|| (hf
& HF_LIST_REPLY
) || ok_blook(followup_to
)) {
315 /* Learn about a possibly sending mailing list; use do for break; */
316 if ((cp
= hfield1("list-post", mp
)) != NULL
) do {
319 if ((x
= lextract(cp
, GEXTRA
| GSKIN
)) == NULL
|| x
->n_flink
!= NULL
||
320 (cp
= url_mailto_to_address(x
->n_name
)) == NULL
||
321 /* XXX terribly wasteful to create a new name, and can't we find
322 * XXX a way to mitigate that?? */
323 is_addr_invalid(x
= nalloc(cp
, GEXTRA
| GSKIN
), EACM_STRICT
)) {
324 if (options
& OPT_D_V
)
325 n_err(_("Message contains invalid List-Post: header\n"));
331 /* A special case has been seen on e.g. ietf-announce@ietf.org:
332 * these usually post to multiple groups, with ietf-announce@
333 * in List-Post:, but with Reply-To: set to ietf@ietf.org (since
334 * -announce@ is only used for announcements, say).
335 * So our desire is to honour this request and actively overwrite
336 * List-Post: for our purpose; but only if its a single address.
337 * However, to avoid ambiguities with users that place themselve in
338 * Reply-To: and mailing lists which don't overwrite this (or only
339 * extend this, shall such exist), only do so if reply_to exists of
340 * a single address which points to the same domain as List-Post: */
341 if (reply_to
!= NULL
&& rt
->n_flink
== NULL
&&
342 name_is_same_domain(x
, rt
))
343 cp
= rt
->n_name
; /* rt is EACM_STRICT tested */
345 /* "Automatically `mlist'" the List-Post: address temporarily */
346 if (is_mlist(cp
, FAL0
) == MLIST_OTHER
)
347 head
.h_list_post
= cp
;
352 /* In case of list replies we actively sort out any non-list recipient,
353 * but _only_ if we did not honour a MFT:, assuming that members of MFT
354 * were there for a reason; cp is still List-Post:/eqivalent */
355 if ((hf
& HF_LIST_REPLY
) && mft
== NULL
) {
356 struct name
*nhp
= head
.h_to
;
359 while (nhp
!= NULL
) {
363 if ((cp
!= NULL
&& !asccasecmp(cp
, np
->n_name
)) ||
364 is_mlist(np
->n_name
, FAL0
) != MLIST_OTHER
) {
365 np
->n_type
= (np
->n_type
& ~GMASK
) | GTO
;
366 np
->n_flink
= head
.h_to
;
370 if ((nhp
= head
.h_cc
) != NULL
) {
377 make_ref_and_cs(mp
, &head
);
379 if (ok_blook(quote_as_attachment
)) {
380 head
.h_attach
= csalloc(1, sizeof *head
.h_attach
);
381 head
.h_attach
->a_msgno
= *msgvec
;
382 head
.h_attach
->a_content_description
= _("Original message content");
385 if (mail1(&head
, 1, mp
, NULL
, !!(hf
& HF_RECIPIENT_RECORD
), 0) == OKAY
&&
386 ok_blook(markanswered
) && !(mp
->m_flag
& MANSWERED
))
387 mp
->m_flag
|= MANSWER
| MANSWERED
;
389 if (*++msgvec
!= 0) {
390 /* TODO message (error) ring.., less sleep */
391 printf(_("Waiting a second before proceeding to the next message..\n"));
393 n_msleep(1000, FAL0
);
397 ac_free(save_msgvec
);
403 (*_reply_or_Reply(char c
))(int *, bool_t
)
405 int (*rv
)(int*, bool_t
);
408 rv
= (ok_blook(flipr
) ^ (c
== 'R')) ? &_Reply
: &_reply
;
414 _reply(int *msgvec
, bool_t recipient_record
)
419 rv
= _list_reply(msgvec
, recipient_record
? HF_RECIPIENT_RECORD
: HF_NONE
);
425 _Reply(int *msgvec
, bool_t recipient_record
)
434 memset(&head
, 0, sizeof head
);
435 gf
= ok_blook(fullnames
) ? GFULL
: GSKIN
;
437 for (ap
= msgvec
; *ap
!= 0; ++ap
) {
441 mp
= message
+ *ap
- 1;
445 if ((rp
= hfield1("reply-to", mp
)) != NULL
&&
446 (cp
= ok_vlook(reply_to_honour
)) != NULL
&&
447 (rt
= checkaddrs(lextract(rp
, GTO
| gf
), EACM_STRICT
, NULL
)
449 char const *tr
= _("Reply-To %s%s");
450 size_t l
= strlen(tr
) + strlen(rt
->n_name
) + 3 +1;
451 char *sp
= salloc(l
);
453 snprintf(sp
, l
, tr
, rt
->n_name
, (rt
->n_flink
!= NULL
? "..."
455 if (quadify(cp
, UIZ_MAX
, sp
, TRU1
) > FAL0
) {
456 head
.h_to
= cat(head
.h_to
, rt
);
461 if ((cp
= hfield1("from", mp
)) == NULL
)
463 head
.h_to
= cat(head
.h_to
, lextract(cp
, GTO
| gf
));
465 if (head
.h_to
== NULL
)
468 mp
= message
+ msgvec
[0] - 1;
469 head
.h_subject
= hfield1("subject", mp
);
470 head
.h_subject
= _reedit(head
.h_subject
);
471 make_ref_and_cs(mp
, &head
);
473 if (ok_blook(quote_as_attachment
)) {
474 head
.h_attach
= csalloc(1, sizeof *head
.h_attach
);
475 head
.h_attach
->a_msgno
= *msgvec
;
476 head
.h_attach
->a_content_description
= _("Original message content");
479 if (mail1(&head
, 1, mp
, NULL
, recipient_record
, 0) == OKAY
&&
480 ok_blook(markanswered
) && !(mp
->m_flag
& MANSWERED
))
481 mp
->m_flag
|= MANSWER
| MANSWERED
;
488 _fwd(char *str
, int recipient_record
)
494 bool_t f
, forward_as_attachment
;
497 if ((recipient
= laststring(str
, &f
, TRU1
)) == NULL
) {
498 puts(_("No recipient specified."));
502 forward_as_attachment
= ok_blook(forward_as_attachment
);
503 msgvec
= salloc((msgCount
+ 2) * sizeof *msgvec
);
506 *msgvec
= first(0, MMNORM
);
508 if (pstate
& (PS_HOOK_MASK
| PS_ROBOT
)) {
512 printf(_("No messages to forward.\n"));
516 } else if (getmsglist(str
, msgvec
, 0) < 0)
520 if (pstate
& (PS_HOOK_MASK
| PS_ROBOT
)) {
524 printf(_("No applicable messages.\n"));
527 if (msgvec
[1] != 0) {
528 printf(_("Cannot forward multiple messages at once\n"));
532 memset(&head
, 0, sizeof head
);
533 if ((head
.h_to
= lextract(recipient
,
534 (GTO
| (ok_blook(fullnames
) ? GFULL
: GSKIN
)))) == NULL
)
537 mp
= message
+ *msgvec
- 1;
539 if (forward_as_attachment
) {
540 head
.h_attach
= csalloc(1, sizeof *head
.h_attach
);
541 head
.h_attach
->a_msgno
= *msgvec
;
542 head
.h_attach
->a_content_description
= _("Forwarded message");
547 head
.h_subject
= hfield1("subject", mp
);
548 head
.h_subject
= __fwdedit(head
.h_subject
);
549 mail1(&head
, 1, (forward_as_attachment
? NULL
: mp
), NULL
, recipient_record
,
558 __fwdedit(char *subj
)
561 char *newsubj
= NULL
;
564 if (subj
== NULL
|| *subj
== '\0')
569 mime_fromhdr(&in
, &out
, TD_ISPR
| TD_ICONV
);
571 newsubj
= salloc(out
.l
+ 6);
572 memcpy(newsubj
, "Fwd: ", 5); /* XXX localizable */
573 memcpy(newsubj
+ 5, out
.s
, out
.l
+1);
581 _resend1(void *v
, bool_t add_resent
)
584 struct name
*to
, *sn
;
590 msgvec
= salloc((msgCount
+ 2) * sizeof *msgvec
);
591 name
= laststring(str
, &f
, TRU1
);
593 puts(_("No recipient specified."));
598 *msgvec
= first(0, MMNORM
);
600 if (pstate
& (PS_HOOK_MASK
| PS_ROBOT
)) {
604 puts(_("No applicable messages."));
608 } else if (getmsglist(str
, msgvec
, 0) < 0)
612 if (pstate
& (PS_HOOK_MASK
| PS_ROBOT
)) {
616 printf("No applicable messages.\n");
620 sn
= nalloc(name
, GTO
| GSKIN
);
621 to
= usermap(sn
, FAL0
);
622 for (ip
= msgvec
; *ip
!= 0 && UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
);
624 if (resend_msg(message
+ *ip
- 1, to
, add_resent
) != OKAY
)
633 _c_file(void *v
, enum fedit_mode fm
)
645 if (pstate
& PS_HOOK_MASK
) {
646 n_err(_("Cannot change folder from within a hook\n"));
651 save_mbox_for_possible_quitstuff();
653 i
= setfile(*argv
, fm
);
658 assert(!(fm
& FEDIT_NEWMAIL
)); /* (Prevent implementation error) */
659 if (pstate
& PS_SETFILE_OPENED
)
660 check_folder_hook(FAL0
);
663 /* TODO Don't report "no messages" == 1 == error when we're in, e.g.,
664 * TODO a macro: because that recursed commando loop will terminate the
665 * TODO entire macro due to that! So either the user needs to be able
666 * TODO to react&ignore this "error" (as in "if DOSTUFF" or "DOSTUFF;
667 * TODO if $?", then "overriding an "error"), or we need a different
668 * TODO return that differentiates */
669 i
= (pstate
& PS_ROBOT
) ? 0 : 1;
672 if (pstate
& PS_SETFILE_OPENED
)
673 announce(ok_blook(bsdcompat
) || ok_blook(bsdannounce
));
688 cmd
= smalloc(cmdsize
= strlen(str
) +1);
689 memcpy(cmd
, str
, cmdsize
);
690 _bangexp(&cmd
, &cmdsize
);
693 run_command(ok_vlook(SHELL
), &mask
, COMMAND_FD_PASS
, COMMAND_FD_PASS
, "-c",
708 run_command(ok_vlook(SHELL
), 0, COMMAND_FD_PASS
, COMMAND_FD_PASS
, NULL
,
718 char buf
[PATH_MAX
]; /* TODO getcwd(3) may return a larger value */
721 if (getcwd(buf
, sizeof buf
) != NULL
) {
725 n_perr(_("getcwd"), 0);
739 if (*arglist
== NULL
)
741 else if ((cp
= fexpand(*arglist
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
)
743 if (chdir(cp
) == -1) {
758 rv
= (*_reply_or_Reply('r'))(v
, FAL0
);
769 rv
= _reply(v
, FAL0
);
775 c_replysender(void *v
)
780 rv
= _Reply(v
, FAL0
);
791 rv
= (*_reply_or_Reply('R'))(v
, FAL0
);
802 rv
= _list_reply(v
, HF_LIST_REPLY
);
813 rv
= (*_reply_or_Reply('r'))(v
, TRU1
);
819 c_followupall(void *v
)
824 rv
= _reply(v
, TRU1
);
830 c_followupsender(void *v
)
835 rv
= _Reply(v
, TRU1
);
846 rv
= (*_reply_or_Reply('R'))(v
, TRU1
);
879 rv
= _resend1(v
, TRU1
);
890 rv
= _resend1(v
, FAL0
);
898 int *msgvec
= v
, *ip
, mesg
;
902 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
904 mp
= message
+ mesg
- 1;
905 printf("%d: ", mesg
);
906 if (mp
->m_xlines
> 0)
907 printf("%ld", mp
->m_xlines
);
910 printf("/%lu\n", (ul_i
)mp
->m_xsize
);
922 rv
= _c_file(v
, FEDIT_NONE
);
933 rv
= _c_file(v
, FEDIT_RDONLY
);
940 char const **argv
, **ap
, *cp
;
943 for(ap
= argv
= v
; *ap
!= NULL
; ++ap
){
946 if((cp
= fexpand(*ap
, FEXP_NSHORTCUT
| FEXP_NVAR
)) == NULL
)
962 if ((val
= setfile(mailname
,
963 FEDIT_NEWMAIL
| ((mb
.mb_perm
& MB_DELE
) ? 0 : FEDIT_RDONLY
))
966 setdot(message
+ mdot
- 1);
979 switch (mb
.mb_type
) {
984 rv
= c_cmdnotsupp(NULL
);
999 char **args
, *name
, *ename
;
1003 if (*(args
= v
) == NULL
) {
1004 n_err(_("Synopsis: remove: <mailbox>...\n"));
1011 fmt
= _("Remove %s");
1012 fmt_len
= strlen(fmt
);
1014 if ((name
= expand(*args
)) == NULL
)
1016 ename
= n_shexp_quote_cp(name
, FAL0
);
1018 if (!strcmp(name
, mailname
)) {
1019 n_err(_("Cannot remove current mailbox %s\n"), ename
);
1024 size_t vl
= strlen(ename
) + fmt_len
+1;
1025 char *vb
= salloc(vl
);
1027 snprintf(vb
, vl
, fmt
, ename
);
1028 asw
= getapproval(vb
, TRU1
);
1033 switch (which_protocol(name
)) {
1035 if (unlink(name
) == -1) { /* TODO do not handle .gz .bz2 .xz.. */
1041 if (!stat(name
, &sb
) && S_ISDIR(sb
.st_mode
)) {
1052 n_err(_("Cannot remove POP3 mailbox %s\n"), ename
);
1056 if (maildir_remove(name
) != OKAY
)
1060 n_err(_("Not removed: unknown protocol: %s\n"), ename
);
1064 } while (*++args
!= NULL
);
1073 char **args
= v
, *old
, *new;
1074 enum protocol oldp
, newp
;
1080 if (args
[0] == NULL
|| args
[1] == NULL
|| args
[2] != NULL
) {
1081 n_err(_("Synopsis: rename: <old> <new>\n"));
1085 if ((old
= expand(args
[0])) == NULL
)
1087 oldp
= which_protocol(old
);
1088 if ((new = expand(args
[1])) == NULL
)
1090 newp
= which_protocol(new);
1092 if (!strcmp(old
, mailname
) || !strcmp(new, mailname
)) {
1093 n_err(_("Cannot rename current mailbox %s\n"),
1094 n_shexp_quote_cp(old
, FAL0
));
1100 if (newp
== PROTO_POP3
)
1104 if (link(old
, new) == -1) {
1119 } else if (unlink(old
) == -1) {
1125 if (rename(old
, new) == -1) {
1132 n_err(_("Cannot rename POP3 mailboxes\n"));
1137 n_err(_("Unknown protocol in %s and %s; not renamed\n"),
1138 n_shexp_quote_cp(old
, FAL0
), n_shexp_quote_cp(new, FAL0
));
1148 c_urlencode(void *v
) /* XXX IDNA?? */
1153 OBSOLETE("`urlencode': please use `urlcodec enc[ode]' instead");
1155 for (ap
= v
; *ap
!= NULL
; ++ap
) {
1156 char *in
= *ap
, *out
= urlxenc(in
, FAL0
);
1159 out
= n_UNCONST(V_(n_error
));
1160 printf(" in: <%s> (%" PRIuZ
" bytes)\nout: <%s> (%" PRIuZ
" bytes)\n",
1161 in
, strlen(in
), out
, strlen(out
));
1168 c_urldecode(void *v
) /* XXX IDNA?? */
1173 OBSOLETE("`urldecode': please use `urlcodec dec[ode]' instead");
1175 for (ap
= v
; *ap
!= NULL
; ++ap
) {
1176 char *in
= *ap
, *out
= urlxdec(in
);
1179 out
= n_UNCONST(V_(n_error
));
1180 printf(" in: <%s> (%" PRIuZ
" bytes)\nout: <%s> (%" PRIuZ
" bytes)\n",
1181 in
, strlen(in
), out
, strlen(out
));