diff options
| author | bwarsaw | 2000-03-03 04:18:57 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-03-03 04:18:57 +0000 |
| commit | 7070b6641d41544d21d2780fac9f7e3fce6f21cd (patch) | |
| tree | cc2861126b6c53f71762af8942aef524aa1c6248 /Mailman/GatewayManager.py | |
| parent | 4affcc8d3a1b1da9b6f880468dfc41d92d71b079 (diff) | |
| download | mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.gz mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.zst mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.zip | |
Diffstat (limited to 'Mailman/GatewayManager.py')
| -rw-r--r-- | Mailman/GatewayManager.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Mailman/GatewayManager.py b/Mailman/GatewayManager.py index 931a67dec..1bba6e36b 100644 --- a/Mailman/GatewayManager.py +++ b/Mailman/GatewayManager.py @@ -34,20 +34,25 @@ class GatewayManager: self.gateway_to_mail = 0 def GetConfigInfo(self): + WIDTH = mm_cfg.TEXTFIELDWIDTH + return [ 'Mail-to-News and News-to-Mail gateway services.', - ('nntp_host', mm_cfg.String, 50, 0, + ('nntp_host', mm_cfg.String, WIDTH, 0, 'The Internet address of the machine your News server ' 'is running on.', 'The News server is not part of Mailman proper. You have to ' 'already have access to a NNTP server, and that NNTP server ' 'has to recognize the machine this mailing list runs on as ' 'a machine capable of reading and posting news.'), - ('linked_newsgroup', mm_cfg.String, 50, 0, + + ('linked_newsgroup', mm_cfg.String, WIDTH, 0, 'The name of the Usenet group to gateway to and/or from.'), + ('gateway_to_news', mm_cfg.Toggle, ('No', 'Yes'), 0, 'Should posts to the mailing list be resent to the ' 'newsgroup?'), + ('gateway_to_mail', mm_cfg.Toggle, ('No', 'Yes'), 0, 'Should newsgroup posts not sent from the list be resent ' 'to the list?') |
