aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-04-14 22:11:42 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-04-14 22:11:42 +0000
commit238be5fcbe69551a287af757522595a3f9642317 (patch)
tree4063b77f22bf3fc490aee3d11fb56937a0e62e90
parente28b5c24dd820c6b31878e3aa88f3cc433bc443a (diff)
downloadfetchmail-238be5fcbe69551a287af757522595a3f9642317.tar.gz
fetchmail-238be5fcbe69551a287af757522595a3f9642317.tar.bz2
fetchmail-238be5fcbe69551a287af757522595a3f9642317.zip
Eliminate caseblinding of UID comparisons.
svn path=/trunk/; revision=1736
-rw-r--r--driver.c11
-rw-r--r--fetchmail.c4
-rw-r--r--fetchmail.h2
-rw-r--r--pop3.c6
-rw-r--r--rfc822.c5
5 files changed, 16 insertions, 12 deletions
diff --git a/driver.c b/driver.c
index 5257819a..d3f191ab 100644
--- a/driver.c
+++ b/driver.c
@@ -168,7 +168,7 @@ static int is_host_alias(const char *name, struct query *ctl)
*/
if (strcasecmp(lead_server->truename, name) == 0)
return(TRUE);
- else if (str_in_list(&lead_server->akalist, name))
+ else if (str_in_list(&lead_server->akalist, name, TRUE))
return(TRUE);
else if (!ctl->server.dns)
return(FALSE);
@@ -830,12 +830,15 @@ int num; /* index of message */
* envelope sender from the Return-Path, the new Return-Path should be
* exactly the same as the original one.
*
- * Empty Return-Path headers will be ignored.
+ * We do *not* want to ignore empty Return-Path headers. These should
+ * be passed through as a way of indicating that a message should
+ * not trigger bounces if delivery fails. What we *do* need to do is
+ * make sure we never try to rewrite such a blank Return-Path.
*
*/
- if (!strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
+ if (!strncasecmp("Return-Path:", line, 12))
{
- strcpy(return_path, cp);
+ strcpy(return_path, line);
if (!ctl->mda) {
free(line);
continue;
diff --git a/fetchmail.c b/fetchmail.c
index b968d21c..f108f7e8 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -503,7 +503,7 @@ int main (int argc, char **argv)
* Note: this delay is important - don't remove!
*/
sleep(3);
- interface_note_activity(&ctl->server);
+ interface_note_dactivity(&ctl->server);
}
#endif /* defined(linux) && !INET6 */
}
@@ -688,7 +688,7 @@ static int load_params(int argc, char **argv, int optind)
*/
for (ctl = querylist; ctl; ctl = ctl->next)
if (!strcmp(ctl->server.pollname, argv[optind])
- || str_in_list(&ctl->server.akalist, argv[optind]))
+ || str_in_list(&ctl->server.akalist, argv[optind], TRUE))
goto foundit;
/*
diff --git a/fetchmail.h b/fetchmail.h
index 1f528c06..891c2ec8 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -306,7 +306,7 @@ void free_str_list(struct idlist **);
void save_str_pair(struct idlist **, const char *, const char *);
void free_str_pair_list(struct idlist **);
int delete_str(struct idlist **, int);
-int str_in_list(struct idlist **, const char *);
+int str_in_list(struct idlist **, const char *, const flag);
int str_nr_in_list(struct idlist **, const char *);
int str_nr_last_in_list(struct idlist **, const char *);
void str_set_mark( struct idlist **, const char *, const flag);
diff --git a/pop3.c b/pop3.c
index ffcb6469..6a63779d 100644
--- a/pop3.c
+++ b/pop3.c
@@ -435,8 +435,7 @@ static int pop3_getrange(int sock,
new = save_str(&ctl->newsaved, id, UID_UNSEEN);
new->val.status.num = num;
- /* note: ID comparison is caseblind */
- if (str_in_list(&ctl->oldsaved, id)) {
+ if (str_in_list(&ctl->oldsaved, id, FALSE)) {
new->val.status.mark = UID_SEEN;
str_set_mark(&ctl->oldsaved, id, UID_SEEN);
}
@@ -484,9 +483,8 @@ static int pop3_is_old(int sock, struct query *ctl, int num)
if (!ctl->oldsaved)
return (num <= last);
else
- /* note: ID comparison is caseblind */
return (str_in_list(&ctl->oldsaved,
- str_find (&ctl->newsaved, num)));
+ str_find(&ctl->newsaved, num), FALSE));
}
#ifdef UNUSED
diff --git a/rfc822.c b/rfc822.c
index c9951a04..120abf17 100644
--- a/rfc822.c
+++ b/rfc822.c
@@ -61,6 +61,9 @@ const char *host; /* server hostname */
* "From: John Smith@my.pop.server (Systems) <jsmith@domain>" because
* the state machine can't look ahead to the <> part past the comment
* and instead treats `John Smith' as a bareword address.
+ *
+ * Also note that we don't rewrite the fake address <> in order to
+ * avoid screwing up bounce suppression with a null Return-Path.
*/
parendepth = state = 0;
@@ -132,7 +135,7 @@ const char *host; /* server hostname */
case 3: /* we're in a <>-enclosed address */
if (*from == '@')
has_host_part = TRUE;
- else if (*from == '>')
+ else if (*from == '>' && from[-1] != '<')
{
state = 1;
if (!has_host_part)