Changeset 854
- Timestamp:
- 03/16/03 10:56:52 (22 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/config.py
r853 r854 15 15 # 16 16 # $Log$ 17 # Revision 1.19 2003/03/16 09:56:52 jalet 18 # Mailto option now accepts some additional values which all mean that 19 # nobody will receive any email message. 20 # Mailto option now works. Version 1.01 is now officially out. 21 # 17 22 # Revision 1.18 2003/03/16 08:00:50 jalet 18 23 # Default hard coded options are now used if they are not set in the … … 214 219 def getMailTo(self, printer) : 215 220 """Returns the recipient of email messages.""" 216 validmailtos = [ " DEVNULL", "BOTH", "USER", "ADMIN" ]221 validmailtos = [ "NOBODY", "NONE", "NOONE", "BITBUCKET", "DEVNULL", "BOTH", "USER", "ADMIN" ] 217 222 try : 218 223 mailto = self.getPrinterOption(printer, "mailto").upper()