diff options
| author | bwarsaw | 2002-10-15 05:54:23 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-10-15 05:54:23 +0000 |
| commit | 94c7143364b69101ec43c8802a1cfb9fa35dd3c8 (patch) | |
| tree | e96df503cb96cc6dda17cc62d92958d6a9ad5f9c /Mailman/Deliverer.py | |
| parent | 83a79e6d87d1f1a5704b85d49e71a2c93e41f417 (diff) | |
| download | mailman-94c7143364b69101ec43c8802a1cfb9fa35dd3c8.tar.gz mailman-94c7143364b69101ec43c8802a1cfb9fa35dd3c8.tar.zst mailman-94c7143364b69101ec43c8802a1cfb9fa35dd3c8.zip | |
Diffstat (limited to 'Mailman/Deliverer.py')
| -rw-r--r-- | Mailman/Deliverer.py | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py index 96db58cfa..5134e1daf 100644 --- a/Mailman/Deliverer.py +++ b/Mailman/Deliverer.py @@ -4,20 +4,19 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software +# along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Mixin class with message delivery routines.""" -import os from email.MIMEText import MIMEText from email.MIMEMessage import MIMEMessage @@ -34,11 +33,11 @@ class Deliverer: def SendSubscribeAck(self, name, password, digest, text=''): pluser = self.getMemberLanguage(name) if not self.send_welcome_msg: - return - if self.welcome_msg: - welcome = Utils.wrap(self.welcome_msg) + '\n' - else: - welcome = '' + return + if self.welcome_msg: + welcome = Utils.wrap(self.welcome_msg) + '\n' + else: + welcome = '' if self.umbrella_list: addr = self.GetMemberAdminEmail(name) umbrella = Utils.wrap(_('''\ @@ -59,10 +58,10 @@ your membership administrative address, %(addr)s.''')) 'optionsurl' : self.GetOptionsURL(name, absolute=1), 'password' : password, }, lang=pluser, mlist=self) - if digest: - digmode = _(' (Digest mode)') - else: - digmode = '' + if digest: + digmode = _(' (Digest mode)') + else: + digmode = '' realname = self.real_name msg = Message.UserNotification( self.GetMemberAdminEmail(name), self.GetRequestEmail(), |
