summaryrefslogtreecommitdiffstats
path: root/mail/mailman
diff options
context:
space:
mode:
authordemon <demon@FreeBSD.org>2001-02-26 09:13:49 +0000
committerdemon <demon@FreeBSD.org>2001-02-26 09:13:49 +0000
commitd60ef3dbcecd1250fa574825d4a044cc01aee707 (patch)
tree4533c62c8d139a52173f7225eea7d72568f2db0b /mail/mailman
parent277f36665a60df89ed9ead02109cd066cdd5c34c (diff)
downloadFreeBSD-ports-d60ef3dbcecd1250fa574825d4a044cc01aee707.zip
FreeBSD-ports-d60ef3dbcecd1250fa574825d4a044cc01aee707.tar.gz
Teach mailman how to work both with MD5 and DES passwords.
This problem is already fixed in mailman CVS. Bump PORTREVISION. Submitted by: Kresimir Kumericki <kkumer@phy.hr>
Diffstat (limited to 'mail/mailman')
-rw-r--r--mail/mailman/Makefile1
-rw-r--r--mail/mailman/files/patch-aa26
2 files changed, 27 insertions, 0 deletions
diff --git a/mail/mailman/Makefile b/mail/mailman/Makefile
index afa7bcd..2fafb7c 100644
--- a/mail/mailman/Makefile
+++ b/mail/mailman/Makefile
@@ -7,6 +7,7 @@
PORTNAME= mailman
PORTVERSION= 2.0.1
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= mailman
diff --git a/mail/mailman/files/patch-aa b/mail/mailman/files/patch-aa
new file mode 100644
index 0000000..ec6b5df
--- /dev/null
+++ b/mail/mailman/files/patch-aa
@@ -0,0 +1,26 @@
+*** Mailman/Utils.py.orig Thu Nov 16 22:43:11 2000
+--- Mailman/Utils.py Thu Feb 15 19:42:10 2001
+***************
+*** 407,413 ****
+ f = open(mm_cfg.SITE_PW_FILE)
+ pw2 = f.read()
+ f.close()
+! return Crypt.crypt(pw1, pw2[:2]) == pw2
+ # There probably is no site admin password if there was an exception
+ except IOError:
+ return 0
+--- 407,420 ----
+ f = open(mm_cfg.SITE_PW_FILE)
+ pw2 = f.read()
+ f.close()
+! # First we check for the Modular Crypt Format
+! mcf = re.match(r'\$\d\$(\w+)\$', pw2)
+! if mcf: # Is it MCF?
+! salt=mcf.group(1)
+! else: # No, it's traditional DES.
+! salt=pw2[:2]
+!
+! return Crypt.crypt(pw1, salt) == pw2
+ # There probably is no site admin password if there was an exception
+ except IOError:
+ return 0 \ No newline at end of file
OpenPOWER on IntegriCloud