diff options
| author | Barry Warsaw | 2011-04-08 20:09:13 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-04-08 20:09:13 -0400 |
| commit | c73acb993acfc08f542b886eb426d6156a6a0a13 (patch) | |
| tree | 6e90dba19d1319df6a6ce2baaa345c8289283dc2 /src/mailman/config/config.py | |
| parent | 664cc74fd0c0156424e8fa891d1a9e75faabd09d (diff) | |
| download | mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.tar.gz mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.tar.zst mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.zip | |
add_member()
- As the most common interface for adding new members (and users), adapt the
password storing bit to storing only encrypted passwords in the database.
schema.cfg:
- Remove the creator_pw_file and site_pw_file as they are obsolete.
- Add password_schema key for defining the default password encryption scheme.
mailman.sql, user.py:
- Store the password as a binary blob instead of as unicode text.
Diffstat (limited to '')
| -rw-r--r-- | src/mailman/config/config.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mailman/config/config.py b/src/mailman/config/config.py index 636b9ef9e..9c210b6a2 100644 --- a/src/mailman/config/config.py +++ b/src/mailman/config/config.py @@ -183,10 +183,8 @@ class Configuration: if category.template_dir == ':source:' else category.template_dir), # Files. - creator_pw_file = category.creator_pw_file, lock_file = category.lock_file, pid_file = category.pid_file, - site_pw_file = category.site_pw_file, ) # Now, perform substitutions recursively until there are no more # variables with $-vars in them, or until substitutions are not |
