Projects tagged ‘mail’ and ‘ruby’


Jump to tag:

Projects tagged ‘mail’ and ‘ruby’

Filtered by Project Tags mail ruby

Refine results Project Tags rails (3) email (3) mom (1) esb (1) spamd (1) messaging (1) xml (1) file (1) synapse (1) pox (1) gmail (1) firewall (1)

[10 total ]

10USERS
 

Apache Synapse is a simple to use, lightweight and high performance Enterprise Service Bus (ESB) from Apache. It can deal with SOAP 1.1/1.2, REST, POX, Plain Text, Binary, Hessian, FIX and other types of messages over non-blocking http/s, JMS ... [More] (1.0/1.1), File systems (s/ftp, CIFS, local, tar/zip/gz..), Mail (POP3, IMAP, SMTP), AMQP, TCP/UDP, XMPP and others. It can also deal with initiating/terminating WS-Addressing, WS-Security and WS-Reliable Messaging Please note that the project has a much longer history than the Ohloh metrics indicate, because of an SVN move. The project started in September 2005, and has had 5 major releases. Refer to: http://people.apache.org/~asankha/synapse/statsvn/ for true code statistics [Less]

1USERS
 

Sup is a console-based email client for people with a lot of email. It supports tagging, very fast full-text search, automatic contact- list management, custom code insertion via a hook system, and more. If you're the type of person who treats email ... [More] as an extension of your long-term memory, Sup is for you. Sup makes it easy to: * Handle massive amounts of email * Mix email from different sources * Instantaneously search over your entire email collection: mbox, IMAP folders, and Maildirs * Handle multiple accounts * Add custom code to handle certain types of messages or to handle certain types of text within messages * Organize email with user-defined labels, automatically track recent contacts, and much more! The goal of Sup is to become the email client of choice for nerds everywhere. [Less]

0USERS

Resent mail following the RFC 2822. Usefull to "upload" mail to Gmail without loosing the real sender.

0USERS

mail2atom convert from mail to AtomAPI POST which is used for blog posting. mail2atom invoked by your .forward file and etc...

0USERS

OverviewDenySpam monitors a mail server log file and uses a firewall to temporarily block or redirect incoming packets from hosts that display spammer-like behavior. The primary benefit of DenySpam over other anti-spam solutions is that it stops ... [More] many spammers before they waste your bandwidth and server resources, and it doesn't require any maintenance or training in order to be effective. And if you'd rather fight back instead of just blocking spammers outright, DenySpam integrates nicely with the spamd SMTP tarpit, which provides endless amusement by wasting the time and resources of spammers trying to connect to your server. DenySpam comes configured for use with Postfix and pf, but should be usable with most Unix mail servers and firewalls with a little bit of configuration tweaking. See the FAQ for a detailed description of how DenySpam works. RequirementsRuby 1.8.5+ [Less]

0USERS

Sending email can be a bottleneck in your Rails app. Here's a dead simple way of making all your mail be delivered asynchronously. With the plugin installed, all mail send from Mailer gets put into a table called QueuedMails. Here's my migration ... [More] to add that table: class AddQueuedMailTable < ActiveRecord::Migration def self.up create_table :queued_mails do |t| t.column :object, :text t.column :mailer, :string end end def self.down drop_table :queued_mails end endNow everytime you call YouMailer.deliver_something(*params)that mail object will be stored in the QueuedMails table. Just periodically call script/runner from a cron job to process your new mail queue: "script/runner 'MailQueue.process' -e production"If you want to bypass the queue just called the deliver_method_name with an exclamation point at the end. Like: YouMailer.deliver_something!(*params)WARNING: This feature to bypass the queue isn't the same way it was done in the original release of this plugin, so it isn't backwards compatible. Not a huge thing to change, and it probably wasn't a very popular thing used by people using this plugin anyways. Nate, Inkling Inc., http://www.inklingmarkets.com [Less]

0USERS

ActionSMSActionSMS es un plugin para Rails que añade a ActionMailer (el mecanismo estándar de Rails para enviar e-mail) la capacidad de enviar SMS's, en principio a través de la API de Movistar. Inicio rápidoEl plugin es bastante simple de ... [More] usar: Instálalo: $ script/plugin install http://action-sms.googlecode.com/svn/tags/action_smsCrea el archivo config/sms.yml con el siguiente contenido: gateway: movistar login: password: ¡Ya está! Ahora, cuando envíes mensajes con ActionMailer, Rails parseará la lista de destinatarios, y lo enviará como SMS a aquellos destinatarios que consistan en un número, y como e-mail a los demás, de forma completamente transparente. La forma de generar los mensajes, configurar el sistema, escribir los tests, etc., es la estándar de Rails (puedes leer una buena descripción de todos estos aspectos en el capítulo 24 del "Agile Web Development with Rails" o en el wiki de Rails). Enviar SMS's desde Ruby (sin Rails)ActionSMS se divide en dos partes: la parte puramente Rails de redefinición de ActionMailer, y la clase MovistarGateway que es la que maneja el envío de los SMS. Esto es con un doble objetivo: por un lado, poder incluir en el futuro otros gateways en el plugin (el gateway activo se configura en config/sms.yml y de momento sólo acepta el valor movistar), y, por otro, poder usar esa clase en scripts "pure Ruby", lo cual sería tan simple como el siguiente ejemplo: require 'movistar_gateway' gateway = MovistarGateway.new('', '') gateway.send(['66666666', '777777777'], 'Texto del mensaje') [Less]

0USERS

OverviewA simple notes/tasks reminder. A task is submitted by an e-mail, reminder arrives in an e-mail. Written in Ruby, this server is hidden behind regular mail server. In the part receiving messages works similar to Remember The Milk ... [More] ComponentsSystem has two main components: SMTP server - submits reveiver scheduler - remind sender ServerServer listens on localhost:1234 receiving e-mail messages from regular, hardened SMTP server (postfix in my case). After receiving the mail is parsed to obtain all recognized data and stored in database (SQLite3). SchedulerScheduler scans database seeking current minute and after gathering matching tasks sends reminders. Additional infoLicenseIts licensed on GPLv2 and exactly this version. Someday it will be worth of downloading ;-) Risk of usageYou use it at your own risk. No warranty of anything is given. [Less]