Dada Mail Developers

Please fill in your email address in the form below:

Subscribe/Unsubscribe on Dada Mail Developers

* Required



Mailing List Information:

This mailing list is to discuss the nerdy programming development of Dada Mail -

If you are just looking for support Dada Mail, consult the message boards at:

http://dadamailproject.com/support/boards

To post to this list, send a message to:

dadadev@dadamailproject.com

All subscribers of this list may post to the list itself.

Some on topic... topics include:

  • Positive Crits on the program (I like, "x", but, "y" needs some work - here's an idea on how to make this better...)
  • Bug/Error reports
  • Bug fixes
  • Request For Comments on any changes to the program
  • Help customizing Dada Mail for your own internal needs
  • Patches
  • Language Translations
  • Support Documentation/Doc editing, FAQ's, etc.
  • Discussion of any changes that you would like to be committed to the next version of Dada Mail -

At the moment, there aren't many people with CVS access for Dada Mail - if you would like CVS access, please first talk about the changes you propose and how it will affect the program. If the idea is sound and agreed upon, the change will be comitted. A good track record of this will allow you to have CVS access. Some reasons that patches will not be accepted is if the patch breaks compatibility with a previous version of the program, the patch is too centric to your own problem or the patch simply isn't very good.

Please, please please familiarize yourself with the documentation at:

http://dadamailproject.com/support/documentation/

Since no one wants to answer the same question twice.

Another sneaky reason for this mailing list is to test out the discussion list capabilities of Dada Mail, since Dada Mail is used for the mailing list itself.

NOTE - because of this, there may be times that this list will be somewhat broken. Although we're not planning on breaking the program by using it, we're giving you the heads up that this may well happen anyways.

Privacy Policy:

Email addresses used for this mailing list are used only for this mailing list and are not sold or transfered. You will not be subscribed to any other lists on this site as well.

Archives:

Auto-Adjusting Batch Settings for Amazon SES

Sent May 15th 2012

Hello Everyone, I've been working on getting Dada Mail to, "Auto Adjust" it's batch settings, depending on what your Amazon SES sending limits are set at. This is useful, as you're usually started out at a ridiculously low rate, which is periodically raised at Amazon's discretion. There's also a limit per second and per 24hours that you have to be careful to keep in line with. So, I whipped up a feature to do this all automatically and adjust it, as your SES quota changes. It'll make it into the v5.1.0 re...

Re: bounce handler does not recognize Content-Type: text/rfc822-headers

Sent May 8th 2012

Re: Re: bounce handler does not recognize Content-Type: text/rfc822-headers 2012/5/8 Justin J <justin@dadamailproject.com> [...] This is what I tried:      https://gist.github.com/2631381 Thanks, I managed to get your code working in version 4.1.0 with some small modifications. The bounce handler is parsing the text/rfc822-headers correctly now. ...

Re: another small modification to the bounce handler

Sent May 8th 2012

OK, I added some of the issues you raised into the issue tracker: https://github.com/justingit/dada-mail/issues/290 https://github.com/justingit/dada-mail/issues/291 and also did some work on getting Dada Mail to generally understand DSN formatted bounces, outside of Amazon SES (as well as fixing those two issues) in this commit: https://github.com/justingit/dada-mail/commit/c50411d4166cbcac54f0c50b50dc5bf3137cbcd6 ...

Re: another small modification to the bounce handler

Sent May 7th 2012

On May 7, 2012, at 6:10 PM, Frans Gouverne wrote: > One of the attachments of a bounced message contains: > > Reporting-MTA: dns; mailfe07.swip.net > > Original-Recipient: rfc822; > Final-Recipient: LOCAL; > Action: failed > Status: 4.0.0 > Diagnostic-Code: smtp;account is full (quota exceeded) None of the emails I have in the corpus has a, Final-Recipient header, if you want to send over the entire bounce, I'll add it in there. And as Moshe wrote, forking Dada Mail, making some changes ...

Re: another small modification to the bounce handler

Sent May 7th 2012

Re: another small modification to the bounce handler Frans,You should consider forking Justin's repository on GitHub (https://github.com/justingit/dada-mail), making your changes, and submitting a pull request. AFAIK, that is the easiest way if you want to get these changes incorporated.You could also open a bug there and attavh your changes to the bug for easier tracking. Moshe--Moshe Katz-- moshe@ymkatz.net-- +1(301)867-3732 On Mon, May 7, 2012 at 8:11 PM, Frans Gouverne <fransgnl@gmail.com> wrote: One of t...

Re: bounce handler does not recognize Content-Type: text/rfc822-headers

Sent May 7th 2012

On May 7, 2012, at 10:35 AM, Frans Gouverne wrote: > To fool the MIME parser, I added the following line in sub parse_bounce: > > #change text/rfc822-headers into message/rfc822 > $message =~ s|Content-Type: text/rfc822-headers|Content-Type: message/rfc822|g; > > eval { $entity = $parser->parse_data($message) }; > [etc] > > seems to be working... This is what I tried: https://gist.github.com/2631381 So, instead of hacking the message, I just made it look for t...

another small modification to the bounce handler

Sent May 7th 2012

another small modification to the bounce handler One of the attachments of a bounced message contains:/Reporting-MTA: dns; mailfe07.swip.net//Original-Recipient: rfc822;<email@domain.nl> Final-Recipient: LOCAL;<cxu-63m-x6e@domain.nl>Action: failedStatus: 4.0.0Diagnostic-Code: smtp;account is full (quota exceeded)/The bounce handler takes cxu-63m-x6e@domain.nl (the Final-Recipient) as the email address which is not correct here: it should be email@domain.nl (Original-Recipient). It looks like, when LOCAL is...

Re: bounce handler does not recognize Content-Type: text/rfc822-headers

Sent May 7th 2012

Re: bounce handler does not recognize Content-Type: text/rfc822-headers To fool the MIME parser, I added the following line in sub parse_bounce:#change text/rfc822-headers into message/rfc822      $message =~ s|Content-Type: text/rfc822-headers|Content-Type: message/rfc822|g;        eval { $entity = $parser->parse_data($message) };    [etc]seems to be working...2012/5/7 Frans Gouverne <fransgnl@gmail.com> Hi Justin,I have some bounced emails (using...

bounce handler does not recognize Content-Type: text/rfc822-headers

Sent May 7th 2012

bounce handler does not recognize Content-Type: text/rfc822-headers Hi Justin,I have some bounced emails (using Amazon SES) which do use text/rfc822-headers as the Content-Type for the attachment. This is not recognized by sub  "find_list_in_list_headers" and as a result the list cannot be found. Is there a workaround for this? I tried to modify the test like:  if ( $entity->head->mime_type eq 'message/rfc822' | $entity->head->mime_type eq 'text/rfc822-headers' ) but then I get an error...

Re: bounce handler - Amazon SES

Sent May 7th 2012

Re: Re: bounce handler - Amazon SES 2012/5/6 Justin J <justin@dadamailproject.com> Can you send over a complete bounce message, headers and all? Here it is, I only changed the email and domain names for privacy reasons. There are 3 parts: the bounced email itself and two attachments:*BOUNCED EMAIL:*Return-path: <> Envelope-to: bounces@mydomain.comDelivery-date: Wed, 25 Apr 2012 15:16:56 +0200Received: from mail by server087.totalin.net with spam-scanned (Exim 4.60)   id 1SN25W-0004RX-Up  &...

< <Previous

Archive Index

 

this list's archives:

(archive rss , atom rss/atom )

Loading