67 lines
2.4 KiB
Python
Executable File
67 lines
2.4 KiB
Python
Executable File
# recieve.py - Script for apply event of mailbox
|
|
#
|
|
# Copyright (C) 2002 Joris Bontje
|
|
#
|
|
# This program 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 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
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
#
|
|
# The author can be reached via e-mail at jbontje@suespammers.org
|
|
#
|
|
#Updated to use new path functions in CFPython -Todd Mitchell
|
|
|
|
import CFPython
|
|
import sys
|
|
import os.path
|
|
sys.path.append(os.path.join(CFPython.GetDataDirectory(),CFPython.GetMapDirectory(),'python'))
|
|
|
|
import CFMail
|
|
import string
|
|
|
|
activator=CFPython.WhoIsActivator()
|
|
activatorname=CFPython.GetName(activator)
|
|
whoami=CFPython.WhoAmI()
|
|
|
|
mail = CFMail.CFMail()
|
|
total = mail.countmail(activatorname)
|
|
|
|
if total > 0:
|
|
elements = mail.receive(activatorname)
|
|
element = []
|
|
for element in elements:
|
|
type, fromname, message = element
|
|
if type==1:
|
|
msgob = CFPython.CreateObjectInside('scroll', whoami)
|
|
CFPython.SetName(msgob,'mailscroll F: '+fromname+' T: '+activatorname)
|
|
CFPython.SetMessage(msgob, message)
|
|
CFPython.SetValue(msgob, 0)
|
|
elif type==2:
|
|
msgob = CFPython.CreateObjectInside('note', whoami)
|
|
CFPython.SetName(msgob,'newspaper D: '+fromname)
|
|
CFPython.SetMessage(msgob, message)
|
|
CFPython.SetValue(msgob, 0)
|
|
elif type==3:
|
|
msgob = CFPython.CreateObjectInside('diploma', whoami)
|
|
CFPython.SetName(msgob,'mailwarning F: '+fromname+' T: '+activatorname)
|
|
CFPython.SetMessage(msgob, message)
|
|
CFPython.SetValue(msgob, 0)
|
|
else:
|
|
print 'ERROR: unknown mailtype\n'
|
|
|
|
if total == 1:
|
|
CFPython.Write('You got 1 mail.', activator)
|
|
elif total > 1:
|
|
CFPython.Write('You got %s mails.'%total, activator)
|
|
else:
|
|
CFPython.Write('You haven\'t got any mail.', activator)
|