Main > Free Download Search >

Free newsletter store software for linux

newsletter store

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1989
PloneNewsLetter 2.0

PloneNewsLetter 2.0


PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format. more>>
PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format.
PloneNewsLetter gives you the possibility to create your custom newsletters. The newsletter is prepared for being sent using your favourite mass mailer, and can be directly published on your site.
The process of creating your PloneNewsLetter:
- You create a new PloneNewsLetter
- Using PloneNewsLetter, you search your Plone site for content
- You select the documents that you want to make it into the newsletter
- You can click on the "create" button, and an html and text version of the newsletter are created.
- The html and text versions can now be edited and viewed quickly in a preview window.
- Once you are satisfied with the result, you can send the newsletter to your email address.
- You can use your favourite mass mailer to distribute the newsletter Features:
- The templates used for production of the newsletter are fully customizable.
- The selection of objects for the newsletter is remembered, so you dont have to reselect everything just because you changed the templates.
- If the user publishes the newsletters content, all users will see the HTML version of the newsletter. That way the the newsletter is automatically archived online.
- PloneNewsLetter consists of two object:
- A content type, for users
- A Portal Tool, for settings
<<less
Download (0.11MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
Oxylus Newsletters System 0.2

Oxylus Newsletters System 0.2


Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups. more>>
Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups.
You can import and export users, and public subscription is allowed. Oxylus Newsletters System project allows linux users to schedule newsletters for a specific date using a crontab job.
For each sent newsletter, you can see its history and whether it was successfully sent.
Enhancements:
- This version is fully compatible with PHP5.
- The mails are sent just once to all the users.
- The SQL error which occurred when new groups are created was fixed.
- Various framework bugfixes were made.
<<less
Download (0.20MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1435 downloads
C2::Newsletter 0.3 beta

C2::Newsletter 0.3 beta


C2::Newsletter is a tool to send MIME-encoded newsletters. more>>
C2::Newsletter is a simple tool for sending newsletters to your visitors. It allows you to create multiple newsletters, so your visitors can select which topics they want to receive.
There is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
<<less
Download (0.024MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
Email::Store 0.24

Email::Store 0.24


Email::Store is a framework for database-backed email storage. more>>
Email::Store is a framework for database-backed email storage.

SYNOPSIS

use Email::Store dbi:mysql:mailstore;
Email::Store->setup; # Do this once

Email::Store::Mail->store( $rfc822 );
Email::Store::Mail->retrieve( $msgid );

...

Email::Store is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.

Email::Store itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about Class::DBI, youre going to need to in order to get much out of this.

Despite its minimalist nature, Email::Store is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, Email::Store is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.

For instance, the core Email::Store::Entity plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) Email::Store::Thread interfaces Email::Store to Mail::Thread allowing you to navigate mails by their position in a mail thread; the planned non-core Email::Store::Plucene module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.

<<less
Download (0.027MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1215 downloads
Really Simple CalDAV Store 0.8.0

Really Simple CalDAV Store 0.8.0


Really Simple CalDAV Store project is a server implementation of the CalDAV protocol for storing calendaring resources. more>>
Really Simple CalDAV Store project is a server implementation of the CalDAV protocol for storing calendaring resources (iCalendar format) on a remote shared server.
An increasing number of calendar clients support the maintenance of shared remote calendars through CalDAV including Mozilla Calendar (Sunbird/Lightning), Evolution, Mulberry, and soon Apples iCal.
The Really Simple CalDAV Store supports basic delegation of read/write access among calendar users and multiple users or clients reading and writing the same calendar entries over time.
Enhancements:
- Lots of improvements were made to CalDAV specification compliance, especially around privacy of tasks and events.
- Two new translations of the administration interface were added (Polish and Hungarian).
- Support for authentication against an LDAP backend was added along with a number of performance, security, and bugfixes.
<<less
Download (0.31MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
880 downloads
Class::DataStore 0.07

Class::DataStore 0.07


Class::DataStore is a Perl module for generic OO data storage/retrieval. more>>
Class::DataStore is a Perl module for generic OO data storage/retrieval.

SYNOPSIS

my %values = ( one => 1, two => 2 );
my $store = Class::DataStore->new( %values );

# using get/set methods
$store->set( three, 3 );
my $three = $store->get( three );

# using AUTOLOAD method
$store->four( 4 );
my $four = $store->four;
my @four = $store->four; # returns a list

my $exists = $store->exists( three ); # $exists = 1
my $data_hashref = $store->dump;
$store->clear;

Class::DataStore implements a simple storage system for object data. This data can be accessed via get/set methods and AUTOLOAD. AUTOLOAD calls are not added to the symbol table, so using get/set will be faster. Using AUTOLOAD also means that you will not be able to store data with a key that is already used by a instance method, such as "get" or "exists".
This module was written originally as part of a website framework that was used for the Democratic National Committee website in 2004. Some of the implementations here, such as get() optionally returning a list if called in array context, reflect the way this module was originally used for building web applications.

Class::DataStore is most useful when subclassed. To preserve the AUTOLOAD functionality, be sure to add the following when setting up the subclass:

use base Class::DataStore;
*AUTOLOAD = &Class::DataStore::AUTOLOAD;
This module is also a useful add-on for modules that need quick and simple data storage, e.g. to store configuration data:
$self->{_config} = Class::Datastore->new( $config_data );
sub config { return $_[0]->{_config}; }
my $server = $self->config->server;
my $sender = $self->config->get( sender );

<<less
Download (0.004MB)
Added: 2006-10-06 License: Perl Artistic License Price:
1113 downloads
Email::Store::DBI 0.254

Email::Store::DBI 0.254


Email::Store::DBI is a Perl module for database backend to Email::Store. more>>
Email::Store::DBI is a Perl module for database backend to Email::Store.

SYNOPSIS

use Email::Store dbi:...;

This class is a subclass of Class::DBI and contains means for Email::Store-based programs to register what DSN they wish to use. It also provides for building database tables from schemas embedded in the DATA section of plug-in modules, using Class::DBI::DATA::Schema.

"Email::Store" is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.

"Email::Store" itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about "Class::DBI", youre going to need to in order to get much out of this.

Despite its minimalist nature, "Email::Store" is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, "Email::Store" is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.

For instance, the core "Email::Store::Entity" plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) "Email::Store::Thread" interfaces "Email::Store" to "Mail::Thread" allowing you to navigate mails by their position in a mail thread; the planned non-core "Email::Store::Plucene" module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.

<<less
Download (0.028MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1117 downloads
DB based NetFlow Collector 1.0

DB based NetFlow Collector 1.0


DB based NetFLow Collector aims to collect Cisco NetFlow data and store it to a database. more>>
DB based NetFLow Collector aims to collect Cisco NetFlow data and store it to a database.
DB based NetFlow Collector has a plugin interface, which makes it flexible for fitting in particular tasks.
Enhancements:
- First release. post your comments/bug reports.
<<less
Download (0.47MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1231 downloads
Apache-Storage 1.00

Apache-Storage 1.00


Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process. more>>
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process.
<<less
Download (0.004MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1521 downloads
splash-selector 0.1

splash-selector 0.1


splash-selector project is an usefull splashscreen selector for Gnome Desktop. more>>
splash-selector project is an usefull splashscreen selector for Gnome Desktop.

This application allow you to store a list of splash images and to apply one of them, with only 2 click of the mouse.

Splash-selector is fully functional but pretty new and ready to be bugfixed and improved.

<<less
Download (MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
904 downloads
XBlock-Reporter 1.2

XBlock-Reporter 1.2


XBlock-Reporter is a shell/PHP/MySQL frontend. more>>
Xblock reporter is a set of PHP and shell scripts to insert an exported report from an 8e6 Xstop R3000 appliance into a database, and then output that in a searchable web based format.

XBlock Reporter is a shell/PHP/MySQL front end to take the logs from an 8E6 Xstop appliance and store the data for searching/reporting.
<<less
Download (4.6MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
Net::iTMS 0.15

Net::iTMS 0.15


Net::iTMS is a Perl interface to the information within the iTunes Music Store (iTMS). more>>
Net::iTMS is a Perl interface to the information within the iTunes Music Store (iTMS).

SYNOPSIS

my $iTMS = Net::iTMS->new;

my $artist = $iTMS->get_artist(2893902);
print "Artist: ", $artist->name, "n";

for my $album ($artist->discography) {
print $album->title, "n";

for my $track ($album->tracks) {
print "t ", $track->number, ": ", $track->title, "n";
}
}

Net::iTMS is the main class (that is, the one you should be using) for interacting with Apples iTunes Music Store (http://apple.com/itunes/store/).

Currently, it provides means to access individual artist, album, and song information in the iTMS.

<<less
Download (0.013MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
wallpaperChooser 0.3

wallpaperChooser 0.3


wallpaperChooser is a small application for managing your wallpapers. more>>
wallpaperChooser is a small application for managing your wallpapers. It has the ability to store wallpapers, preview them, and set them on the desktop.
This is a small application made with Python and PyGTK to admin your wallpapers. It has the ability to store wallpapers, preview them and set them in the desktop.
Installation:
To install this application just run as root:
#make install
In order to uninstall it (as root too):
#make uninstall
Enhancements:
- Added to the code the ability to check if the needed directories and files exist and in case they dont, create them.
<<less
Download (0.005MB)
Added: 2006-08-11 License: GPL (GNU General Public License) Price:
1169 downloads
PowerDNS Oracle Backend 2.1

PowerDNS Oracle Backend 2.1


PowerDNS Oracle Backend provides a backend which allows PowerDNS to use Oracle as its data store. more>>
PowerDNS Oracle Backend provides a backend which allows PowerDNS to use Oracle as its data store.

PowerDNS Oracle Backend is a backend driver for the PowerDNS nameserver which allows DNS data to be stored in an Oracle database. PowerDNS can load backend modules at runtime. This backend is fully configurable, and SQL statements can be specified in the configuration file.

<<less
Download (0.006MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
958 downloads
LindeX Retriever 0.10

LindeX Retriever 0.10


LindeX Retriever is a collection of Perl scripts that get LindeX Market Data from the Linden Lab (Second Life) feed. more>>
LindeX Retriever is a collection of Perl scripts that get LindeX Market Data from the Linden Lab (Second Life) feed.

It can filter them using XML::XPath, and store them using rrdtool.

Output example:

[root@database ~]# perl lindex.pl
1169545518

<<less
Download (0.002MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1004 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5