Differences between revisions 66 and 67
Revision 66 as of 2012-02-03 08:28:39
Size: 10142
Editor: barry
Comment:
Revision 67 as of 2012-02-03 08:28:40
Size: 10262
Editor: barry
Comment: Migrated to Confluence 4.0
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma page-filename DEV/versions/14352393 #pragma page-filename DEV/versions/15171612
Line 3: Line 3:
Line 6: Line 7:
Line 13: Line 15:
 1. A developer has an idea for an enhancement.  They describe it here and we can discuss general design issues, coding suggestions, decomposition of work into branches, etc. For higher bandwidth discussions we can use irc (#mailman channel on [[irc///irc.freenode.net]]).
1. A developer has an idea for an enhancement.  They describe it here and we can discuss general design issues, coding suggestions, decomposition of work into branches, etc. For higher bandwidth discussions we can use irc (#mailman channel on [[irc://irc.freenode.net|irc://irc.freenode.net]]).
Line 16: Line 19:
Line 17: Line 21:
 * Branches should be self-contained:  Include documentation, a NEWS entry, and for Mailman 3,  include tests.  Ideally, there would be one bug for every branch.
 * Branches should be as small as possible. The smaller the branch the easier it is to review.  For Launchpad, we have a strict 800 line diff limit on branches, since anything beyond that gets very difficult and time consuming to review.

* Branches should be self-contained:  Include documentation, a NEWS entry, and for Mailman 3, include tests.  Ideally, there would be one bug for every branch.
 * Branches should be as small as possible. The smaller the branch the easier it is to review.  For Launchpad, we have a strict 800 line diff limit on branches, since anything beyond that gets very difficult and time consuming to review.
Line 20: Line 26:
Line 21: Line 28:
 * A Core Mailman developer will review the code.  (For Mailman 2.x, it will most likely be Mark.  For Mailman 3 it will be Barry.)
 * Once we've approved the branch, either Mark or Barry will merge it into the official trunks.  Currently only a few of us have write permission to the official branches.
 * A Core Mailman developer will review the code.  (For Mailman 2.x, it will most likely be Mark.  For Mailman 3 it will be Barry.)
 * Once we've approved the branch, either Mark or Barry will merge it into the official trunks.  Currently only a few of us have write permission to the official branches.
Line 24: Line 32:
Line 27: Line 36:
Line 32: Line 42:
Line 33: Line 44:
Line 38: Line 50:
Line 39: Line 52:
Line 53: Line 67:
Line 54: Line 69:
People seem to have trouble figuring out where to make suggestions or feature requests.  There is a [[../suggestions|suggestions]] page here, or you may wish to start a discussion on the [[http://mail.python.org/mailman/listinfo/mailman-developers|mailman-developers list]]
People seem to have trouble figuring out where to make suggestions or feature requests. There is a [[../suggestions|suggestions]] page here, or you may wish to start a discussion on the [[http://mail.python.org/mailman/listinfo/mailman-developers|mailman-developers list]]
Line 57: Line 73:
Line 60: Line 77:
Line 75: Line 93:
Line 77: Line 96:
 * Anti-spam and anti-backscatter
  * [[http://wiki.exim.org/EximAutoReply|How To Do Autoreplies Without The World Hating You]].
  * <<Verbatim([)>>
A talk given at a UK Unix User Group meeting. Look for the 5th abstract on [[http://www.ukuug.org/events/winter2005/programme.shtml|this page]].
  * [[http://www.dontbouncespam.org/]]
  * [[http://spamlinks.net/prevent-secure-backscatter.htm]]
 * Anti-spam and anti-backscatter  
  * [[http://wiki.exim.org/EximAutoReply|How To Do Autoreplies Without The World Hating You]].     *
  * [
A talk given at a UK Unix User Group meeting. Look for the 5th abstract on [[http://www.ukuug.org/events/winter2005/programme.shtml|this page]].
  * [[http://www.dontbouncespam.org/|http://www.dontbouncespam.org/]]
  * [[http://spamlinks.net/prevent-secure-backscatter.htm|http://spamlinks.net/prevent-secure-backscatter.htm]]
Line 83: Line 104:
  * UK Joint Academic Network (JANet) provides network connectivity and services for UK
HE institutions has [[http://www.ja.net/services/csirt/advice/policies/collateral-spam.html|guidance to victims of backscatter]].
  * UK Joint Academic Network (JANet) provides network connectivity and services for UK<<BR>> HE institutions has [[http://www.ja.net/services/csirt/advice/policies/collateral-spam.html|guidance to victims of backscatter]].
Line 88: Line 107:
  * Mailman's own recommendations for&nbsp;[[SEC/Controlling spam|controlling spam]]   * Mailman's own recommendations for [[../../SEC/Controlling spam|controlling spam]]  

Mailman Developer Resources

See the quick start.

Contributing to Mailman, step 1: Bazaar and Launchpad

Mailman's source code is published in a publicly available revision control system called Bazaar available through the code hosting and open source development service called Launchpad. On June 22, 2007, we switched from using Subversion on SourceForge to the new repository, and while the old Subversion repository will still be available read-only, no new updates will be committed to it. Hosting the source code on Bazaar provides both the core developers and unofficial third party extensions much more freedom to hack on Mailman.

Here is more detail on how to develop Mailman code using Bazaar and Launchpad.

Here are a list of important official and unofficial branches.

Contributing to Mailman, step 2: Contribution workflow process

  1. A developer has an idea for an enhancement.  They describe it here and we can discuss general design issues, coding suggestions, decomposition of work into branches, etc. For higher bandwidth discussions we can use irc (#mailman channel on irc://irc.freenode.net).

  2. The Mailman community may be able to indicate in a non-binding way whether an idea is likely to be accepted, which can help the potential contributor decide to keep working with that in mind, or continue on however they like. (This being open source and bzr being a DVCS, everyone is free to do whatever they want.)
  3. If the idea is appropriate for Mailman, FSF must get copyright assignments from the developer. See below. Do this early, since it can take some time to get all the paperwork to the FSF.

Branch development guidelines

  • Branches should be self-contained:  Include documentation, a NEWS entry, and for Mailman 3, include tests.  Ideally, there would be one bug for every branch.
  • Branches should be as small as possible. The smaller the branch the easier it is to review.  For Launchpad, we have a strict 800 line diff limit on branches, since anything beyond that gets very difficult and time consuming to review.

Branch review and merge

  • When a branch is ready for review, create a merge proposal for it and email the Mailman devel list.
  • A Core Mailman developer will review the code.  (For Mailman 2.x, it will most likely be Mark.  For Mailman 3 it will be Barry.)
  • Once we've approved the branch, either Mark or Barry will merge it into the official trunks.  Currently only a few of us have write permission to the official branches.

Mailman is a GNU project with the majority of the copyrights being held by the Free Software Foundation. We therefore request that developers who contribute code, assign their copyrights in their Mailman contribution to the FSF. To do this, you first need to submit a GNU copyright assignment request form containing some basic information, and then fill out the form that the FSF sends you. Please let us know after you've sent the second form so that we can track your contribution. The FSF often doesn't tell us in a timely manner when such forms have been received.

Version-specific resources

Here are the collection of resources for people interested in the development of Mailman.

Sprints

Initiatives and proposals

Suggestions

People seem to have trouble figuring out where to make suggestions or feature requests. There is a suggestions page here, or you may wish to start a discussion on the mailman-developers list

Other developer information

Mailman is a GNU project with the majority of the copyrights being held by the Free Software Foundation. We therefore request that developers who contribute code, assign their copyrights in their Mailman contribution to the FSF. To do this, you first need to submit a GNU copyright assignment request form containing some basic information, and then fill out the form that the FSF sends you. Please let us know after you've sent the second form so that we can track your contribution. The FSF often doesn't tell us in a timely manner when such forms have been received.

Relevant RFCs, references, and standards

Here are some useful RFCs, references and drafts:

Best practices:


MailmanWiki: DEV/Home (last edited 2023-02-25 16:13:48 by stephen@xemacs.org)