[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
David Levine |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. a4d2c92d013879e3a2bf70260c34fffae47aa1bf |
Date: |
Thu, 12 Jan 2012 04:38:57 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".
The branch, master has been updated
via a4d2c92d013879e3a2bf70260c34fffae47aa1bf (commit)
via 91836a18d1815f1f1cf687b2ad4eeba97d7f6594 (commit)
via e37dc08079906b1b2737c3dad31fa507bdc66ecb (commit)
from 6e00dba11ff815307cd60cee7a7f69d115591c7e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=a4d2c92d013879e3a2bf70260c34fffae47aa1bf
commit a4d2c92d013879e3a2bf70260c34fffae47aa1bf
Author: David Levine <address@hidden>
Date: Wed Jan 11 22:38:35 2012 -0600
Enabled support for tls switch.
diff --git a/uip/whom.c b/uip/whom.c
index d405ebb..33a6d97 100644
--- a/uip/whom.c
+++ b/uip/whom.c
@@ -112,6 +112,7 @@ main (int argc, char **argv)
case NOCHKSW:
case SNOOPSW:
case SASLSW:
+ case TLSSW:
vec[vecp++] = --cp;
continue;
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=91836a18d1815f1f1cf687b2ad4eeba97d7f6594
commit 91836a18d1815f1f1cf687b2ad4eeba97d7f6594
Author: David Levine <address@hidden>
Date: Wed Jan 11 22:36:20 2012 -0600
Removed unsupported format and check switches, and commented out unused
macro HMNG.
diff --git a/uip/spost.c b/uip/spost.c
index e9e44a8..187f9a0 100644
--- a/uip/spost.c
+++ b/uip/spost.c
@@ -27,53 +27,45 @@ struct swit switches[] = {
{ "filter filterfile", 0 },
#define NFILTSW 1
{ "nofilter", 0 },
-#define FRMTSW 2
- { "format", 0 },
-#define NFRMTSW 3
- { "noformat", 0 },
-#define REMVSW 4
+#define REMVSW 2
{ "remove", 0 },
-#define NREMVSW 5
+#define NREMVSW 3
{ "noremove", 0 },
-#define VERBSW 6
+#define VERBSW 4
{ "verbose", 0 },
-#define NVERBSW 7
+#define NVERBSW 5
{ "noverbose", 0 },
-#define WATCSW 8
+#define WATCSW 6
{ "watch", 0 },
-#define NWATCSW 9
+#define NWATCSW 7
{ "nowatch", 0 },
-#define BACKSW 10
+#define BACKSW 8
{ "backup", 0 },
-#define NBACKSW 11
+#define NBACKSW 9
{ "nobackup", 0 },
-#define ALIASW 12
+#define ALIASW 10
{ "alias aliasfile", 0 },
-#define NALIASW 13
+#define NALIASW 11
{ "noalias", 0 },
-#define WIDTHSW 14
+#define WIDTHSW 12
{ "width columns", 0 },
-#define VERSIONSW 15
+#define VERSIONSW 13
{ "version", 0 },
-#define HELPSW 16
+#define HELPSW 14
{ "help", 0 },
-#define DEBUGSW 17
+#define DEBUGSW 15
{ "debug", -5 },
-#define DISTSW 18
+#define DISTSW 16
{ "dist", -4 }, /* interface from dist */
-#define CHKSW 19
- { "check", -5 }, /* interface from whom */
-#define NCHKSW 20
- { "nocheck", -7 }, /* interface from whom */
-#define WHOMSW 21
+#define WHOMSW 17
{ "whom", -4 }, /* interface from whom */
-#define PUSHSW 22 /* fork to sendmail then exit */
+#define PUSHSW 18 /* fork to sendmail then exit */
{ "push", -4 },
-#define NPUSHSW 23 /* exec sendmail */
+#define NPUSHSW 19 /* exec sendmail */
{ "nopush", -6 },
-#define LIBSW 24
+#define LIBSW 20
{ "library directory", -7 },
-#define ANNOSW 25
+#define ANNOSW 21
{ "idanno number", -6 },
{ NULL, 0 }
};
@@ -86,7 +78,7 @@ struct swit switches[] = {
#define HSUB 0x0004 /* Subject: header */
#define HTRY 0x0008 /* try to send to addrs on header */
#define HBCC 0x0010 /* don't output this header */
-#define HMNG 0x0020 /* mung this header */
+/* #define HMNG 0x0020 */ /* munge this header */
#define HNGR 0x0040 /* no groups allowed in this header */
#define HFCC 0x0080 /* FCC: type header */
#define HNIL 0x0100 /* okay for this header not to have
addrs */
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=e37dc08079906b1b2737c3dad31fa507bdc66ecb
commit e37dc08079906b1b2737c3dad31fa507bdc66ecb
Author: David Levine <address@hidden>
Date: Wed Jan 11 22:33:45 2012 -0600
Removed, or added use of, unused macros to prevent warnings from gcc
-Wunused-macros.
diff --git a/sbr/mts.c b/sbr/mts.c
index 71836e4..6e19bd1 100644
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -20,9 +20,6 @@
#include <sys/socket.h>
#include <netdb.h>
-#define NOTOK (-1)
-#define OK 0
-
/*
* static prototypes
*/
diff --git a/uip/msgchk.c b/uip/msgchk.c
index c7f32f5..a958351 100644
--- a/uip/msgchk.c
+++ b/uip/msgchk.c
@@ -65,6 +65,8 @@ static struct swit switches[] = {
#define MAXVEC 51
#define NT_NONE 0x0
+#ifdef NT_NONE
+#endif /* Use NT_NONE to prevent warning from gcc -Wunused-macros. */
#define NT_MAIL 0x1
#define NT_NMAI 0x2
#define NT_ALL (NT_MAIL | NT_NMAI)
diff --git a/uip/slocal.c b/uip/slocal.c
index 44e5988..36a25f0 100644
--- a/uip/slocal.c
+++ b/uip/slocal.c
@@ -44,6 +44,8 @@
* harmless.
*/
#define DB_DBM_HSEARCH 1
+#ifdef DB_DBM_HSEARCH
+#endif /* Use DB_DBM_HSEARCH to prevent warning from gcc -Wunused-macros. */
#ifdef NDBM_HEADER
#include NDBM_HEADER
#endif
-----------------------------------------------------------------------
Summary of changes:
sbr/mts.c | 3 ---
uip/msgchk.c | 2 ++
uip/slocal.c | 2 ++
uip/spost.c | 50 +++++++++++++++++++++-----------------------------
uip/whom.c | 1 +
5 files changed, 26 insertions(+), 32 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. a4d2c92d013879e3a2bf70260c34fffae47aa1bf,
David Levine <=