diff options
Diffstat (limited to 'src/mailman/commands')
| -rw-r--r-- | src/mailman/commands/cli_members.py | 5 | ||||
| -rw-r--r-- | src/mailman/commands/docs/info.txt | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/mailman/commands/cli_members.py b/src/mailman/commands/cli_members.py index cd7fcfbf1..96469c0f1 100644 --- a/src/mailman/commands/cli_members.py +++ b/src/mailman/commands/cli_members.py @@ -40,6 +40,7 @@ from mailman.interfaces.command import ICLISubCommand from mailman.interfaces.listmanager import IListManager from mailman.interfaces.member import ( AlreadySubscribedError, DeliveryMode, DeliveryStatus) +from mailman.utilities.passwords import make_user_friendly_password @@ -196,8 +197,10 @@ class Members: real_name, email = parseaddr(line) real_name = real_name.decode(fp.encoding) email = email.decode(fp.encoding) + # Give the user a default, user-friendly password. + password = make_user_friendly_password() try: - add_member(mlist, email, real_name, None, + add_member(mlist, email, real_name, password, DeliveryMode.regular, mlist.preferred_language.code) except AlreadySubscribedError: diff --git a/src/mailman/commands/docs/info.txt b/src/mailman/commands/docs/info.txt index 12fce3223..9658e93e6 100644 --- a/src/mailman/commands/docs/info.txt +++ b/src/mailman/commands/docs/info.txt @@ -60,7 +60,6 @@ The File System Hierarchy layout is the same every by definition. ... File system paths: BIN_DIR = /sbin - CREATOR_PW_FILE = /var/lib/mailman/data/creator.pw DATA_DIR = /var/lib/mailman/data ETC_DIR = /etc EXT_DIR = /etc/mailman.d @@ -73,7 +72,6 @@ The File System Hierarchy layout is the same every by definition. PRIVATE_ARCHIVE_FILE_DIR = /var/lib/mailman/archives/private PUBLIC_ARCHIVE_FILE_DIR = /var/lib/mailman/archives/public QUEUE_DIR = /var/spool/mailman - SITE_PW_FILE = /var/lib/mailman/data/adm.pw TEMPLATE_DIR = .../mailman/templates VAR_DIR = /var/lib/mailman |
