forked from flashmob/POP3-server-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopd-config.php.dist
29 lines (24 loc) · 932 Bytes
/
popd-config.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/*
*rename this file to popd-config.php
*/
// server config
define('GPOP_LISTEN_IP4', '0.0.0.0'); // 0.0.0.0 or ip address
define('GPOP_USER', 'dbx'); // user & group to run under (setuid/setgid)
define('GPOP_HOSTNAME', 'guerrillamail.com');
# Uncomment to override -p command line argument
# define('GPOP_PORT', $listen_port);
// Database
define('GPOP_DB_MAPPER', 'Mysql'); // Name of the driver in PodDb/Driver
define('GPOP_MYSQL_HOST', 'localhost');
define('GPOP_MYSQL_USER', 'dbx');
define('GPOP_MYSQL_PASS', 'password123');
define('GPOP_MYSQL_DB', 'dbx');
define('GPOP_MAX_CLIENTS', 100);
# Uncomment to override -l command line argument
#define('GPOP_LOG_FILE', $log_file);
# Uncomment to override -v command line argument
# define('GPOP_VERBOSE', $verbose); // true or false
define('GPOP_TIMEOUT', 60); // how many seconds before timeout.
define('POP_REQUIRE_PASSWORD', true);
define('GPOP_ALLOW_DELETE', true);