GithubHelp home page GithubHelp logo

ezlist's Introduction

ezlist

Looking for a dead simple mailing list manager? No GUI, no website and working out-of-the-box with a standard IMAP/SMTP mailbox? Look no more, this is it.

Here is what it does for you:

  • Manage subscriptions/unsubscriptions (or not if you tell it to)
  • Forward subscriber emails to list (aka the core functionality)
  • Work from a single mail address (could be [email protected])

Here are a few things it does not do for you:

  • Moderation of list
  • Fancy web interface
  • Deleting "dead" subscribers on bounce (or VERP if you're super pro)

Any of those features have to be written by yourself. This makes this software only useful in small and controlled environments where you don't shy away from writing a script yourself. Many parts can be easily replaced via configuration and I will soon add examples of how to do so.

Installation

You need to have Python 3 and that's it. Simply clone this repository, change the configuration to your liking and start the mailing list.

# either look for a settings.py in the same dir
./ezlist.py
# or
./ezlist.py -s somewhere/are/the/settings.py

Localization for automated emails

You can now use i18n folder to localize your mailing lists responses. All you need to do is creating a new language folder (tr, en) under the i18n folder. Then copy the txt files from en folder to language folder that you want to translate.

In settings.py define your default language.

# a manager implements the core functionality of the mailing list
MANAGER = Manager(
    mail_addr='[email protected]',  # the address of the mailing list
    inbox=inbox,
    sender=sender,
    storage=storage,
    subject_prefix='[List]',     # how to prefix all mails on the list
    skip_sender=True,            # should a sender get his own email forwarded?
    manage_subscriptions=True,    # subscriptions/unsubscriptions allowed?
    default_language='tr'        # default language for automated emails
)

ezlist's People

Contributors

freddyb avatar qll avatar unicod3 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

freddyb unicod3

ezlist's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.