| Server IP : 93.86.61.54 / Your IP : 216.73.216.156 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/apps/mail/doc/ |
Upload File : |
# Nextcloud Mail Developer Documentation ## Nightly builds Instead of setting everything up manually, you can just [download the nightly builds](https://nightly.portknox.net/mail/?C=M;O=D) instead. These builds are updated every 24 hours, and are pre-configured with all the needed dependencies. 1. Download 2. Extract the tar archive to 'path-to-nextcloud/apps' 3. Navigate to »Apps«, choose the category »Productivity«, find the Mail app and enable it. The nightly builds are provided by [Portknox.net](https://portknox.net) ## Resetting the app Connect to your database and run the following commands (`oc_` is the default table prefix): ```sql DELETE FROM oc_appconfig WHERE appid = 'mail'; DELETE FROM oc_migrations WHERE app = 'mail'; DROP TABLE oc_mail_accounts; DROP TABLE oc_mail_aliases; DROP TABLE oc_mail_coll_addresses; DROP TABLE oc_mail_attachments; DROP TABLE oc_mail_mailboxes; DROP TABLE oc_mail_messages; DROP TABLE oc_mail_recipients; DROP TABLE oc_mail_classifiers; DROP TABLE oc_mail_trusted_senders; ```