Changes between Version 20 and Version 21 of BluePrint/Messaging


Ignore:
Timestamp:
07/16/09 01:44:11 (15 years ago)
Author:
Fran Boon
Comment:

Update link to Cron docs

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/Messaging

    v20 v21  
    3434smtplib is required for sending HTML mails (MIME encoded):
    3535 * http://groups.google.com/group/web2py/browse_thread/thread/3d8ed693dd2f29bc
     36 * Simple app for sending mails from a form (using smtplib): http://mdp.cti.depaul.edu/appliances/default/show/10
    3637
    37 Simple app for sending mails from a form (using smtplib):
    38  * http://mdp.cti.depaul.edu/appliances/default/show/10
     38There is a Cron job to check the contents of the !OutBox & send pending messages. On Success it moves the message to the 'Sent' table:
     39 * http://web2py.com/examples/default/cron
    3940=== SMS ===
     41The SMS Daemon to handle Inbound messages is a separate Python script.
     42
     43It can distinguish between simple messages (added to the !InBox of the Messaging Module) & those which are encoded in Binary XML (the output of XForms from the J2ME client).
     44
     45Q: Do we use Cron to check !OutBox & signal the daemon to send Pending messages? (as for email)
     46
     47Toolkits we can base on:
    4048 * RapidSMS (Python-based): http://rapidsms.org
     49 * !PySerial: http://pyserial.wiki.sourceforge.net/pySerial
     50 * Gammu: http://www.gammu.org (Python-gammu: http://www.gammu.org/wiki/index.php?title=Gammu:Python-gammu)
     51 * Gnokii: http://www.gnokii.org (!PyGnokii: http://mobilehacking.org/index.php/PyGnokii)
    4152 * Kannel: http://kannel.org (!PyKannel: http://mobilehacking.org/index.php/PyKannel)
    4253 * SMSTools: http://smstools3.kekekasvi.com
    43  * Gnokii: http://www.gnokii.org (!PyGnokii: http://mobilehacking.org/index.php/PyGnokii)
    44  * Gammu: http://www.gammu.org (Python-gammu: http://www.gammu.org/wiki/index.php?title=Gammu:Python-gammu)
    45  * !PySerial: http://pyserial.wiki.sourceforge.net/pySerial
    46 
    47 Q: How to get SMS daemon running from Webapp?
    48  * Perhaps this cron example will help:
    49   * http://groups.google.com/group/web2py/browse_thread/thread/44817da72c798df8
    50   * http://groups.google.com/group/web2py/browse_thread/thread/cfe89bfa9d87bc
    5154----
    5255BluePrints