Changeset 1353 for pykota/trunk/pykota/config.py
- Timestamp:
- 02/19/04 15:20:21 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/config.py
r1257 r1353 22 22 # 23 23 # $Log$ 24 # Revision 1.43 2004/02/19 14:20:21 jalet 25 # maildomain pykota.conf directive added. 26 # Small improvements on mail headers quality. 27 # 24 28 # Revision 1.42 2004/01/08 14:10:32 jalet 25 29 # Copyright year changed. … … 371 375 return "localhost" 372 376 377 def getMailDomain(self) : 378 """Returns the mail domain to use to send messages to users.""" 379 try : 380 return self.getGlobalOption("maildomain") 381 except PyKotaConfigError : 382 return 383 373 384 def getAdminMail(self, printername) : 374 385 """Returns the Email address of the Print Quota Administrator."""