consider Default-From as own address
authorPhilipp Takacs <philipp@bureaucracy.de>
Sun, 25 Oct 2015 19:57:23 +0000 (20:57 +0100)
committerPhilipp Takacs <philipp@bureaucracy.de>
Tue, 27 Oct 2015 16:50:13 +0000 (17:50 +0100)
sbr/addrsbr.c
test/tests/spost/test-sender-header

index 09ea131..8915798 100644 (file)
@@ -252,9 +252,9 @@ ismymbox(struct mailname *np)
        if (am == NULL) {
                mq.m_next = NULL;
                mq.m_mbox = getusername();
        if (am == NULL) {
                mq.m_next = NULL;
                mq.m_mbox = getusername();
-               if ((am = context_find("alternate-mailboxes")) == NULL)
+               if ((am = context_find("alternate-mailboxes")) == NULL) {
                        am = getusername();
                        am = getusername();
-               else {
+               } else {
                        mp = &mq;
                        oops = 0;
                        while ((cp = getname(am))) {
                        mp = &mq;
                        oops = 0;
                        while ((cp = getname(am))) {
@@ -282,15 +282,45 @@ ismymbox(struct mailname *np)
                                                        *cp = '\0';
                                                }
                                        }
                                                        *cp = '\0';
                                                }
                                        }
-                                       if ((cp = getenv("MHWDEBUG")) && *cp)
+                                       if ((cp = getenv("MHWDEBUG")) && *cp) {
                                                fprintf(stderr, "mbox=\"%s\" host=\"%s\" %s\n",
                                                        mp->m_mbox, mp->m_host,
                                                        snprintb(buffer, sizeof(buffer), (unsigned) mp->m_type, WBITS));
                                                fprintf(stderr, "mbox=\"%s\" host=\"%s\" %s\n",
                                                        mp->m_mbox, mp->m_host,
                                                        snprintb(buffer, sizeof(buffer), (unsigned) mp->m_type, WBITS));
+                                       }
                                }
                        }
                                }
                        }
-                       if (oops)
+                       if (oops != 0) {
                                advise(NULL, "please fix the profile entry %s",
                                                "alternate-mailboxes");
                                advise(NULL, "please fix the profile entry %s",
                                                "alternate-mailboxes");
+                       }
+               }
+
+               if ((cp = context_find("Default-From")) != NULL) {
+                       int i = 0;
+                       char *cp2;
+                       oops = 0;
+
+                       while ((cp2 = getname(cp)) != NULL) {
+                               i++;
+                               if ((mp->m_next = getm(cp2, NULL, 0, AD_NAME, NULL)) == NULL) {
+                                       admonish(NULL, "illegal address: %s", cp);
+                                       oops++;
+                               } else {
+                                       mp = mp->m_next;
+                                       if ((cp = getenv("MHWDEBUG")) && *cp) {
+                                               fprintf(stderr, "mbox=\"%s\" host=\"%s\" %s\n",
+                                                       mp->m_mbox, mp->m_host,
+                                                       snprintb(buffer, sizeof(buffer), (unsigned) mp->m_type, WBITS));
+                                       }
+                               }
+
+                       }
+
+                       if (oops != 0 || i < 1) {
+                               advise(NULL, "please fix the profile entry %s",
+                                               "Default-From");
+                       }
+
                }
        }
 
                }
        }
 
index ff8399f..a0776bb 100644 (file)
@@ -127,7 +127,7 @@ From: bob@example.org, charly, jack
 To: alice
 Date: Sun, 25 Oct 2015 18:59:56 +0100
 Subject: multiple from addrs (including my default addr)
 To: alice
 Date: Sun, 25 Oct 2015 18:59:56 +0100
 Subject: multiple from addrs (including my default addr)
-Sender: Bob <bob@example.org>
+Sender: bob@example.org
 
 foo
 ----EOM----
 
 foo
 ----EOM----