dropbox_mailimport

Background and rationale

DropBox.py was written to allow users to add or remove attachments without needing to have write privileges.

It is possible to use the inbuilt mailimport function to attach files sent by email, however, this requires write privileges.

A modified version of mailimport.py described here allows the users with restricted privileges to send attachments and notes by email to subfolders of their homepage (/DropBox and /MailNotes) and to send messages to a designated contact person.

For users with more privileges, access to the inbuilt imported mail processing is still provided.

Mail senders must meet more criteria than the standard mailimport.py. The processing of the incoming mail is determined by (1) a task code in the mail subject, (2) group membership of the sender, (3) the existence of the required pages, (4) correct sender and receiver usernames, and (5) a recognised email address.

Description

To integrate receiving mail with DropBox.py the following procedure is established.

The receiving dropbox is required to exist as subpage under a qualified user's homepage (UserName/DropBox).

Attachments received will be added to the UserName/DropBox subpage and content added as notes to the UserName/MailNotes page in reverse chronological order (most recent at the top).

As DropBox.py is intended to provide attachment control for users without necessarily providing write privileges, it is also intended to make a NoteDelete action so users can remove notes without editing their page [watch this space].

To enable incoming mail to be authenticated and its purpose understood the following scheme is followed.

Usage

Valid incoming mail

From: mail(UserName)@domain; UserName <mail@domain>

To: mail(ReceiverName)@domain; ReceiverName <mail@domain>

UserName in DropBoxGroup, ReceiverName/DropBox exists and recognised from: address

ReceiverName is UserName (ie message to self); ReceiverName is OtherUser and UserName in WikiMailGroup

UserName in WikiMailGroup and valid from: address ReceiverName is sitename (as set in wikiconfig.py)

Other incoming mail

Mail with invalid from: address, and/or page structure and group membership not in place

Configuration

wikiconfig.py

   1 #incoming mail
   2 
   3 #permit xmlrpc, excluded by default in multiconfig.py
   4 actions_excluded = multiconfig.DefaultConfig.actions_excluded + []
   5 actions_excluded.remove('xmlrpc')
   6 #ProcessMail needs a secret in mailimportconf.py, so do them all
   7 secrets = {'action/cache':'some random string 1',
   8            'wikiutil/tickets': 'some random string 2',
   9            'jabberbot': 'some random string 3',
  10            'xmlrpc/ProcessMail': 'some random string 4',
  11            'xmlrpc/RemoteScript': 'some random string 5',
  12            }
  13 
  14 # outgoing mail
  15 
  16 mail_from = u"WikiName <wiki@your_wiki_domain>" 
  17 mail_sendmail = "/usr/sbin/sendmail -t -i" #either this or the next two lines
  18 mail_smarthost = "mail.mail_server_domain"
  19 mail_login = "username password"
  20 
  21 # optional setting for dropbox_mailimport.py
  22 
  23 mail_contact = u"UserName" #if not set, superuser is assumed
  24 mail_sender_strict = False #if True, require sender realname to equal username 

mailimportconf.py

   1 mail_import_secret = "some random string 4" #as secrets for xmlrpc/ProcessMail
   2 mail_import_url = u"http://your_moinmoin_domain/?action=xmlrpc2"

ProcessMail.py

Modified to point to a replacement for MoinMoin/mail/mailimport.py as follows:

   1 # from MoinMoin.mail import mailimport
   2 import dropbox_mailimport as mailimport # an enhanced mailimport

The modified copy is placed in wiki/data/plugin/xmlrpc, and in this case the replacement for mailimport.py as well.

dropbox_mailimport.py

The replacement for MoinMoin/mail/mailimport.py to be placed in wiki/data/plugin/xmlrpc (or other suitable location, with the import in ProcessMail.py modified accordingly).

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

dropbox_mailimport-1.0.py

1.0

1.9.2

Examples

[watch this space]

License

GNU GPL, see COPYING for details.

Known issues and limitations


Hits

403

dropbox_mailimport.py (last edited 2015-03-15 01:43:22 by IanRiley)