address
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1544
QAddress 0.2
QAddress is a small and lightweight address book. more>>
QAddress is a small and lightweight address book. QAddress aims to be simple and easy to use, with only the features really needed (and really used). This minimalistic approach is meant to make QAddress fast and reliable.
Main features:
- Search function (maybe even incremental)
- Integrated backup function
- User-defined main view
- Different profiles (maybe)
Enhancements:
- changed tabhandling in the Add/Edit-Widget
- added search function
- minor changes in the user interface
<<lessMain features:
- Search function (maybe even incremental)
- Integrated backup function
- User-defined main view
- Different profiles (maybe)
Enhancements:
- changed tabhandling in the Add/Edit-Widget
- added search function
- minor changes in the user interface
Download (0.072MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1113 downloads
Address Tangler 0.1
AddressTangler is a PHP function that helps you protect email addresses that you need to add to a web page from spam bots. more>>
AddressTangler is a PHP function that helps you protect email addresses that you need to add to a web page from spam bots.
The project uses a simple HTML/CSS trick: The email address is divided into groups of letters, then each group is placed on a table cell, but not sequentially. If a bot browses the HTML code or strips out all the tags from it, it wont find the email address (which is shown correctly when the browser displays the page) but instead a mixed set of groups of letters.
The address, even if correctly displayed, cannot be selected nor copied/pasted. It must be manually typed.
How to use it
It is quite easy to use this function. You only need to give it the email address as a parameter, and it will return the HTML TABLE code.
Remember to copy the at.php file to your webpage folder and add a line like this to the beginning of your PHP code:
require "at.php";
Also remember to add the CSS definition for the table cells to the page with class "at_r1" as follows:
TD.at_r1 {vertical-align:bottom;}
(Note: since the result is a simple HTML table, you dont need to use this function if your page is made with just HTML. You can simply copy the HTML code written on this page and correct it according to the email address that you need to display.)
Version restrictions:
- Keep in mind that not only spam bots will have trouble detecting the email address: the text-to-speech software used by blind users will likely also be affected.
- So, if you plan to make your email address accessible to them, you must provide a second way to publish it. At the present time, this is out of the scope of this project. (perhaps in the future...)
- A possible solution could be to try to describe the address. But even if this results in a high security level, it would be hard to implement it into an automatic function. Also, it could be annoying to hear and complex to understand when used with addresses that make use of many random numbers and letters.
<<lessThe project uses a simple HTML/CSS trick: The email address is divided into groups of letters, then each group is placed on a table cell, but not sequentially. If a bot browses the HTML code or strips out all the tags from it, it wont find the email address (which is shown correctly when the browser displays the page) but instead a mixed set of groups of letters.
The address, even if correctly displayed, cannot be selected nor copied/pasted. It must be manually typed.
How to use it
It is quite easy to use this function. You only need to give it the email address as a parameter, and it will return the HTML TABLE code.
Remember to copy the at.php file to your webpage folder and add a line like this to the beginning of your PHP code:
require "at.php";
Also remember to add the CSS definition for the table cells to the page with class "at_r1" as follows:
TD.at_r1 {vertical-align:bottom;}
(Note: since the result is a simple HTML table, you dont need to use this function if your page is made with just HTML. You can simply copy the HTML code written on this page and correct it according to the email address that you need to display.)
Version restrictions:
- Keep in mind that not only spam bots will have trouble detecting the email address: the text-to-speech software used by blind users will likely also be affected.
- So, if you plan to make your email address accessible to them, you must provide a second way to publish it. At the present time, this is out of the scope of this project. (perhaps in the future...)
- A possible solution could be to try to describe the address. But even if this results in a high security level, it would be hard to implement it into an automatic function. Also, it could be annoying to hear and complex to understand when used with addresses that make use of many random numbers and letters.
Download (0.012MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
944 downloads
My Address Book 1.2
My Address Book is a Web-based contact list program. more>>
My Address Book is a Web-based contact list program. It stores information like addresses, phone numbers, email addresses, and Web sites, and has a notes section for custom information.
Add, delete, and edit functions can be password protected using htaccess. Complete style control using CSS.
Main features:
- Add an unlimited number of contacts.
- Easy to use and read.
- Specify your own colors.
- Use your own template.
<<lessAdd, delete, and edit functions can be password protected using htaccess. Complete style control using CSS.
Main features:
- Add an unlimited number of contacts.
- Easy to use and read.
- Specify your own colors.
- Use your own template.
Download (0.016MB)
Added: 2005-10-19 License: GPL (GNU General Public License) Price:
1473 downloads
KAddressBook 3.4.2
KAddressBook is the KDE address book. more>>
KAddressBook is a comfortable frontend to organize the addresses of your friends, business partners, etc.
KAddressBook allows you to import and export adressbook files, offers a function to search for adresses and - which is the most important feature: it is fully integrated into the K Desktop Enviroment and interacts with other KDE applications like e.g. KMail.
KAddressBook is part of the kdepim package.
<<lessKAddressBook allows you to import and export adressbook files, offers a function to search for adresses and - which is the most important feature: it is fully integrated into the K Desktop Enviroment and interacts with other KDE applications like e.g. KMail.
KAddressBook is part of the kdepim package.
Download (11MB)
Added: 2005-09-07 License: GPL (GNU General Public License) Price:
1521 downloads
RFC::RFC822::Address 1.5
RFC::RFC822::Address is a Perl module for RFC 822 style address validation. more>>
RFC::RFC822::Address is a Perl module for RFC 822 style address validation.
SYNOPSIS
use RFC::RFC822::Address qw /valid/;
print "Validn" if valid abigail@example.com;
This module checks strings to see whether they are have the valid syntax, as defined in RFC 822 [1]. One subroutine, valid, can be imported, which takes a single string as argument. If the string is valid according to RFC 822, a true value is returned, else a false value is returned.
CAVEATS and BUGS
This module sets the variable $Parse::RecDescent::skip. This will influence all other Parse::RecDescent parsers. And this parser will break if you set $Parse::RecDescent::skip to another value. It doesnt look that it is possible to set an alternative skip value for each parser, other than setting the skip value on each production.
Example A.1.5 in RFC 822 is wrong. It should use "Galloping Gourmet"@ANT.Down-Under.
This module should have been named RFC::822::Address. However, perl 5.004 doesnt like the 822 part, and at the time of this writing MacPerl is still at 5.004.
This module is slow.
<<lessSYNOPSIS
use RFC::RFC822::Address qw /valid/;
print "Validn" if valid abigail@example.com;
This module checks strings to see whether they are have the valid syntax, as defined in RFC 822 [1]. One subroutine, valid, can be imported, which takes a single string as argument. If the string is valid according to RFC 822, a true value is returned, else a false value is returned.
CAVEATS and BUGS
This module sets the variable $Parse::RecDescent::skip. This will influence all other Parse::RecDescent parsers. And this parser will break if you set $Parse::RecDescent::skip to another value. It doesnt look that it is possible to set an alternative skip value for each parser, other than setting the skip value on each production.
Example A.1.5 in RFC 822 is wrong. It should use "Galloping Gourmet"@ANT.Down-Under.
This module should have been named RFC::822::Address. However, perl 5.004 doesnt like the 822 part, and at the time of this writing MacPerl is still at 5.004.
This module is slow.
Download (1.5MB)
Added: 2007-02-15 License: Perl Artistic License Price:
987 downloads
Mail::RFC822::Address 0.3
Mail::RFC822::Address is a Perl extension for validating email addresses according to RFC822. more>>
Mail::RFC822::Address is a Perl extension for validating email addresses according to RFC822.
SYNOPSIS
use Mail::RFC822::Address qw(valid validlist);
if (valid("pdw@ex-parrot.com")) {
print "Thats a valid addressn";
}
if (validlist("pdw@ex-parrot.com, other@elsewhere.com")) {
print "Thats a valid list of addressesn";
}
Mail::RFC822::Address validates email addresses against the grammar described in RFC 822 using regular expressions. How to validate a user supplied email address is a FAQ (see perlfaq9): the only sure way to see if a supplied email address is genuine is to send an email to it and see if the user recieves it. The one useful check that can be performed on an address is to check that the email address is syntactically valid. That is what this module does.
This module is functionally equivalent to RFC::RFC822::Address, but uses regular expressions rather than the Parse::RecDescent parser. This means that startup time is greatly reduced making it suitable for use in transient scripts such as CGI scripts.
valid ( address )
Returns true or false to indicate if address is an RFC822 valid address.
validlist ( addresslist )
In scalar context, returns true if the parameter is an RFC822 valid list of addresses.
In list context, returns an empty list on failure (an invalid address was found); otherwise a list whose first element is the number of addresses found and whose remaining elements are the addresses. This is needed to disambiguate failure (invalid) from success with no addresses found, because an empty string is a valid list
<<lessSYNOPSIS
use Mail::RFC822::Address qw(valid validlist);
if (valid("pdw@ex-parrot.com")) {
print "Thats a valid addressn";
}
if (validlist("pdw@ex-parrot.com, other@elsewhere.com")) {
print "Thats a valid list of addressesn";
}
Mail::RFC822::Address validates email addresses against the grammar described in RFC 822 using regular expressions. How to validate a user supplied email address is a FAQ (see perlfaq9): the only sure way to see if a supplied email address is genuine is to send an email to it and see if the user recieves it. The one useful check that can be performed on an address is to check that the email address is syntactically valid. That is what this module does.
This module is functionally equivalent to RFC::RFC822::Address, but uses regular expressions rather than the Parse::RecDescent parser. This means that startup time is greatly reduced making it suitable for use in transient scripts such as CGI scripts.
valid ( address )
Returns true or false to indicate if address is an RFC822 valid address.
validlist ( addresslist )
In scalar context, returns true if the parameter is an RFC822 valid list of addresses.
In list context, returns an empty list on failure (an invalid address was found); otherwise a list whose first element is the number of addresses found and whose remaining elements are the addresses. This is needed to disambiguate failure (invalid) from success with no addresses found, because an empty string is a valid list
Download (0.005MB)
Added: 2007-02-14 License: Perl Artistic License Price:
985 downloads
Address Book Continued 1.0
Address Book Continued provides a multi-user AJAX address book Web application. more>>
Address Book Continued provides a multi-user AJAX address book Web application.
It also makes use of AJAX, which means that page reloads only happen on login/logout; the rest of the operations is handled asynchronously in the background. Its well usable, even over slow connections.
You can even install ABC on your desktop PC and configure it so that it doesnt require login for connections coming from the local computer.
<<lessIt also makes use of AJAX, which means that page reloads only happen on login/logout; the rest of the operations is handled asynchronously in the background. Its well usable, even over slow connections.
You can even install ABC on your desktop PC and configure it so that it doesnt require login for connections coming from the local computer.
Download (0.021MB)
Added: 2007-02-06 License: GPL (GNU General Public License) Price:
990 downloads
Google::Adwords::Address 0.6.0
Google::Adwords::Address is a Google Adwords Address object. more>>
Google::Adwords::Address is a Google Adwords Address object.
SYNOPSIS
use Google::Adwords::Address;
my $address = Google::Adwords::Address->new
->addressLine1(first street)
->city(Paris)
->companyName(My company)
->countryCode(FR)
->emailAddress(my@example.com);
This object should be used with the AccountService API calls
METHODS
Mutators (read/write)
- addressLine1
- addressLine2
- city
- companyName
- countryCode
- emailAddress
- faxNumber
- name
- phoneNumber
- postalCode
- state
<<lessSYNOPSIS
use Google::Adwords::Address;
my $address = Google::Adwords::Address->new
->addressLine1(first street)
->city(Paris)
->companyName(My company)
->countryCode(FR)
->emailAddress(my@example.com);
This object should be used with the AccountService API calls
METHODS
Mutators (read/write)
- addressLine1
- addressLine2
- city
- companyName
- countryCode
- emailAddress
- faxNumber
- name
- phoneNumber
- postalCode
- state
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1067 downloads
RFC822 Address Parser Library 1.2
RFC822 Address Parser Library provides application developers with a complete parser for RFC822 addresses. more>>
RFC822 Address Parser Library provides application developers with a complete parser for RFC822 addresses. Not only can you use the library to verify that RFC822 addresses are syntactically correct, you can also have an address split up into its semantic parts, what is needed when deciding where to route an address to, etc.
What is quite unique is that librfc822 does indeed parse all address types allowed by the standard. That includes such weird things as "address groups" or addresses with whitespace and comments throw in. Take a look at this beast to get an idea:
testing my parser : peter.simons@gmd.de,
(peter.)simons@rhein.de ,,,,,
testing my parser ,
it rules < @peti.gmd.de,@listserv.gmd.de:simons @ cys .de >
;
,
peter.simons@acm.org
That is indeed a legal e-mail address in RFC822 messages. It contains five separate addresses, which are grouped together. Heres the parsed result:
peter.simons@gmd.de
simons@rhein.de
simons@ieee.org
< @peti.gmd.de,@listserv.gmd.de:simons@cys.de >
peter.simons@acm.org
simons@rhein.de
simons@rhein.de
simons@rhein.de
In case you wonder: The strange looking address thats listed fourth is a so called "routing address" -- and yes, thats a legal e-mail address, too. These were popular in the early days of the Internet. Back then, every mail server that relayed an e-mail put its own address into this construct so that bounces could be routed the same way back that they originally went.
The address says that the mail should be send to the host peti.gmd.de, then to listserv.gmd.de, and from there it should be delivered (using any route) to the address simons@cys.de. These days, such addresses can hardly be used, because nobody relays for other recipients anymore. Still, these are legal.
librfc822 provides you with several routines that parse the different flavours of e-mail addresses as defined in the standard. The results will be placed in a rfc822address structure and returned. If constructs are parsed that may contain multiple addresses, you can pass a "committer" class to the function, which is called every time a correct address is found and may append it to a container of your choice.
Enhancements:
- The library has been re-released under an all-permissive license.
<<lessWhat is quite unique is that librfc822 does indeed parse all address types allowed by the standard. That includes such weird things as "address groups" or addresses with whitespace and comments throw in. Take a look at this beast to get an idea:
testing my parser : peter.simons@gmd.de,
(peter.)simons@rhein.de ,,,,,
testing my parser ,
it rules < @peti.gmd.de,@listserv.gmd.de:simons @ cys .de >
;
,
peter.simons@acm.org
That is indeed a legal e-mail address in RFC822 messages. It contains five separate addresses, which are grouped together. Heres the parsed result:
peter.simons@gmd.de
simons@rhein.de
simons@ieee.org
< @peti.gmd.de,@listserv.gmd.de:simons@cys.de >
peter.simons@acm.org
simons@rhein.de
simons@rhein.de
simons@rhein.de
In case you wonder: The strange looking address thats listed fourth is a so called "routing address" -- and yes, thats a legal e-mail address, too. These were popular in the early days of the Internet. Back then, every mail server that relayed an e-mail put its own address into this construct so that bounces could be routed the same way back that they originally went.
The address says that the mail should be send to the host peti.gmd.de, then to listserv.gmd.de, and from there it should be delivered (using any route) to the address simons@cys.de. These days, such addresses can hardly be used, because nobody relays for other recipients anymore. Still, these are legal.
librfc822 provides you with several routines that parse the different flavours of e-mail addresses as defined in the standard. The results will be placed in a rfc822address structure and returned. If constructs are parsed that may contain multiple addresses, you can pass a "committer" class to the function, which is called every time a correct address is found and may append it to a container of your choice.
Enhancements:
- The library has been re-released under an all-permissive license.
Download (0.094MB)
Added: 2007-05-13 License: Freeware Price:
895 downloads
Netscape Address Book Recovery 0.1.0
A tool to take that corrupted Netscape Address Book and get your information out of it more>>
A tool to take that corrupted Netscape Address Book and get your information out of it. This is a tool to take that corrupted Netscape Address Book and get your information out of it. After the third time my book got corrupted, I gave up trying to fix it by hand and wrote this program. This program attempts to get as much information out of the address book as is possible. But as with all programs of this type, it will always need to change to keep track of the different ways in which the address book can be corrupted. It can output .csv (Comma Separated Values) or .ldi (LDAP Date Interchange Format) files.Dont output .csv files, you will lose all mailing list information.
Enhancements:
- Major bugfixes with handling indexes
- Major bugfixes with handling edits
- Added LDIF support
- Added support for mailling lists
<<lessEnhancements:
- Major bugfixes with handling indexes
- Major bugfixes with handling edits
- Added LDIF support
- Added support for mailling lists
Download (0.047MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1224 downloads
Sendmail Sender Address Validator 1.4.0
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification. more>>
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification technology. This technology can stop some kind of SPAM with a spoofed senders e-Mail address.
Also it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
<<lessAlso it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
Download (0.015MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1099 downloads
My Address Book contacts manager 0.9.5
My Address Book is a web-based address book designed to help you keep a record of your friends addresses. more>>
My Address Book is a web-based address book designed to help you keep a record of your friends addresses, providing a list of your contacts (which may be filtered), categories, details of a particular contact, export and import of data (e.g. from spreadsheets), and a Christmas card list.
To use My Address Book you need to have access to some web space that allows you to use PHP and MySQL. If you want your address book to be private (which is highly recommended!) you will need to set it up inside a password-protected directory in your web space.
Installation:
If you want to use My Address Book over the Internet so you can access your addresses wherever you are, you will need some web space which allows you to use PHP and MySQL. If you only want to use My Address Book on a single computer, you will need a web server (e.g. Apache) which supports PHP and you will need MySQL.
Enhancements:
- The dates of birth of contacts may now be stored.
<<lessTo use My Address Book you need to have access to some web space that allows you to use PHP and MySQL. If you want your address book to be private (which is highly recommended!) you will need to set it up inside a password-protected directory in your web space.
Installation:
If you want to use My Address Book over the Internet so you can access your addresses wherever you are, you will need some web space which allows you to use PHP and MySQL. If you only want to use My Address Book on a single computer, you will need a web server (e.g. Apache) which supports PHP and you will need MySQL.
Enhancements:
- The dates of birth of contacts may now be stored.
Download (0.093MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1340 downloads
ADDRESS LIST print web.de dict one slide 0.3
ADDRESS LIST print web.de dict one slide allows users of web.de can print up to 85 addresses on one sheet of paper! more>>
ADDRESS LIST print web.de dict one slide allows users of web.de can print up to 85 addresses on one sheet of paper!
If you use the printing function of web.de, you get a lot of pages to print but never all informations stored before. It is much more convenient to have all informations on one sheet of paper!
How to install:
1 download adl.tar.bz2
2 unpack adl.tar.bz2 to a directory adl
3 cd (place of the directory of adl)
4 ./configure
5 make
6 make install (as root)
How to use:
1. Search in-/export of adresses
2. press export
3. choose "open" (only first time)
4. choose "open with" (only first time)
5. open with "adl", mark every time
6 print page 3-4
How to uninstall
- make uninstall (as root)
Enhancements:
New:
- i18n (translations now possible, if you like to translate, please mail!)
- Lines filled with dots now => easier to find entries which belong together
- mapping of text/x-csv to Address List => open Adress List with right click is possible
- you can change in code if you prefere text alignment center (default) or left
Much better (V 0.2):
- code cleanup
- again: improved Handbook - read it!!!
<<lessIf you use the printing function of web.de, you get a lot of pages to print but never all informations stored before. It is much more convenient to have all informations on one sheet of paper!
How to install:
1 download adl.tar.bz2
2 unpack adl.tar.bz2 to a directory adl
3 cd (place of the directory of adl)
4 ./configure
5 make
6 make install (as root)
How to use:
1. Search in-/export of adresses
2. press export
3. choose "open" (only first time)
4. choose "open with" (only first time)
5. open with "adl", mark every time
6 print page 3-4
How to uninstall
- make uninstall (as root)
Enhancements:
New:
- i18n (translations now possible, if you like to translate, please mail!)
- Lines filled with dots now => easier to find entries which belong together
- mapping of text/x-csv to Address List => open Adress List with right click is possible
- you can change in code if you prefere text alignment center (default) or left
Much better (V 0.2):
- code cleanup
- again: improved Handbook - read it!!!
Download (1.3MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1120 downloads
The Address Book Reloaded 3.0.5 stable SVN:433
The Address Book Reloaded project is a Web application to store contact details of employees/customers in UTF-8 format . more>>
The Address Book Reloaded project is a Web application to store contact details of employees/customers in UTF-8 format on an intranet or Web site.
It features login/user accounts, email harvesting protection, Google Maps support, distributed management of contacts, PDF address book generation, plugins, styles, and SSL certificate authority management.
It stores portraits of contacts, addresses, emails, phone numbers, VoIP/SIP numbers, Web sites, MMS and media info, occupation, function, projects, and freestyle info as HTML notes. The project supports URIs for automatic VoIP dialing with Skype or SIP clients.
Main features:
- CSS Stylesheet based designs
- User records & Contacts linked
- PHP4 & 5 compatible
- PHP safe mode compatible
- Custom dates
- Custom fields
- Admin fields
- Password/Hidden information distribution to users
- Google Maps
- PDF booklet printing
- UTF-8 international charsets
- Administrative Requests (IT accounts/workflow) -- beta
- SSL Certificate Authority (control)
<<lessIt features login/user accounts, email harvesting protection, Google Maps support, distributed management of contacts, PDF address book generation, plugins, styles, and SSL certificate authority management.
It stores portraits of contacts, addresses, emails, phone numbers, VoIP/SIP numbers, Web sites, MMS and media info, occupation, function, projects, and freestyle info as HTML notes. The project supports URIs for automatic VoIP dialing with Skype or SIP clients.
Main features:
- CSS Stylesheet based designs
- User records & Contacts linked
- PHP4 & 5 compatible
- PHP safe mode compatible
- Custom dates
- Custom fields
- Admin fields
- Password/Hidden information distribution to users
- Google Maps
- PDF booklet printing
- UTF-8 international charsets
- Administrative Requests (IT accounts/workflow) -- beta
- SSL Certificate Authority (control)
Download (0.80MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Addresh Book 0.1
Addresh Book is a (basic) Address Book implemented entirely in Shell Scripts. more>>
Addresh Book is a (basic) Address Book implemented entirely in Shell Scripts. Current functionality is implemented for adding records, deleting records and searching records.
Note: This project has been largely superceeded by the ZDB project below.
<<lessNote: This project has been largely superceeded by the ZDB project below.
Download (0.002MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
956 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above address search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed