* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/gpl-3.0. * */ # database config define('DB_HOST','127.0.0.1'); define('DB_USERNAME','user'); define('DB_PASSWORD','test'); define('DB_NAME','insipid'); define('DB_PREFIX','insipid'); # a _ is added automatically as separation # user config define('FRONTEND_USERNAME','luke'); define('FRONTEND_PASSWORD','father'); # absolute path of webroot define('ABSOLUTE_PATH', '/path/to/insipid/webroot'); # relative to absolute path the name of the storage folder define('LOCAL_STORAGE', 'localdata'); # complete restricted access not only the private links or the edit functions # username and password see above define("USE_PAGE_AUTH",false); # results per page define("RESULTS_PER_PAGE",12); # settings for importing from e-mail # SSL/TLS only # IMAP (reading), SMTP (sending) define('EMAIL_SERVER',''); define('EMAIL_SERVER_USER',''); define('EMAIL_SERVER_PASS',''); define('EMAIL_SERVER_PORT_IMAP',993); define('EMAIL_SERVER_PORT_SMTP',465); define('EMAIL_SERVER_MAILBOX','INBOX'); # default INBOX define('EMAIL_MARKER','to-insipid- '); define('EMAIL_ARCHIVE_FOLDER','archive'); define('EMAIL_REPORT_BACK',false); define('EMAIL_REPLY_BACK_VALID',''); define('EMAIL_REPLY_BACK_ADDRESS',''); define('EMAIL_REPLY_BACK_SUBJECT','Insipid email import response');