#!/usr/bin/python # whitelist_relayclients -- Courier filter which exempts local IPs from filtering # Copyright (C) 2003-2008 Gordon Messmer # # This file is part of pythonfilter. # # pythonfilter is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # pythonfilter 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 pythonfilter. If not, see . import sys import courier.control import courier.config def initFilter(): # Record in the system log that this filter was initialized. sys.stderr.write('Initialized the "whitelist_relayclients" python filter\n') def doFilter(bodyFile, controlFileList): """Return a 200 code if the message came from an IP that we relay for. After returning a 200 code, the pythonfilter process will discontinue further filter processing. """ try: sendersIP = courier.control.getSendersIP(controlFileList) except: return '451 Internal failure locating control files' if sendersIP and courier.config.isRelayed(sendersIP): # Don't filter any messages from our relay clients. return '200 Ok' # Return no decision for everyone else. return '' if __name__ == '__main__': # For debugging, you can create a file that contains one line, # formatted as Courier's Received-From-MTA record: # faddresstype; address # Run this script with the name of that file as an argument, # and it'll print either "200 Ok" to indicate that the address # is whitelisted, or nothing to indicate that the remaining # filters would be run. if not sys.argv[1:]: print 'Use: whitelist_relayclients.py ' sys.exit(1) initFilter() print doFilter('', sys.argv[1:])