4 projects tagged "PHP 5"
Atmail is a fully-featured email server and Webmail client, allowing users to send and receive email via a Web browser or mobile device. It has full support for IMAP mailboxes, and an optional email-server mode that uses EXIM as the MTA. Features include a scheduler, MySQL backend support, spell-check, address book, calendar user preferences, multiple accounts, SpamAssassin support, migration scripts from other mail servers, a customizable interface, an attractive AJAX interface, an optional group sharing Calendar/Addressbook, and an Outlook plugin to sync Contacts/Tasks/Calendar data between a Desktop, Mobile, and Webmail client or other email users.
SUMO Access Manager is a security system for PHP Web applications that can be added using only one line of code. Administrators can manage authentication and authorization for users, groups, and security policies with easy, all through an intuitive Web based interface. You can create users that can authenticate their password via LDAP, MySQL internal users, MySQL/PostgreSQL/Oracle generic users tables, and via Google Mail account.
Simple Login Class is a PHP class that can be used to prevent unauthorized access of Web pages. A simple user management system can be implemented with this class very quickly. It does not use databases or database queries to store the user details. Instead of a database, it uses a text file to store the details. An access encoding technique (Base64), two hashing techniques (SHA1 and MD5), an a built-in PHP function (StrRev) are used here to store passwords more securely in the text file. Simple Login Class can be used in any PHP page just by embedding a snippet at the top of a the page to be protected. Any number of user logins can be stored more securely in a single file. The sessions are handled more safely in this system than some other login systems. The user registration system applied here is simplified. In certain cases, no configuration is needed to use this class.