|
893 | 893 | // adds constant to email headers |
894 | 894 | define('GOOGLE_SENDERID', ''); |
895 | 895 |
|
896 | | -// For ajax based signup forms (https://discuss.phplist.org/t/solved-ajax-subscribe-api/974) the access-control-allow-origin header |
| 896 | +// For ajax based signup forms (https://discuss.phplist.org/t/solved-ajax-subscribe-api/974) the access-control-allow-origin header |
897 | 897 | // has to be set properly. |
898 | 898 | // Add the addresses of the websites you want to allow to perform ajax requests to PHPList. |
899 | 899 | define('ACCESS_CONTROL_ALLOW_ORIGINS', ['https://example.com','https://example.org']); |
900 | 900 |
|
901 | 901 | // when using Mysql, what engine should we use |
902 | 902 | // there is no need to set this, when you have a valid engine defined in your Mysql server settings |
903 | 903 | // If you set this, the next time upgrade is run on commandline, the system will attempt to change all tables to this engine. |
904 | | -// this is useful for old systems that have been created |
| 904 | +// this is useful for old systems that have been created |
905 | 905 | // for valid engines, check your server documentation (MariaDB or Mysql) |
906 | 906 | // Warning, setting this value incorrectly will cause your database creation to break |
907 | 907 | // the current value is a sensible one to use. It is advised not to change this. |
908 | | -// if you are on a shared hosting environment, make sure you have the database permissions to update the |
| 908 | +// if you are on a shared hosting environment, make sure you have the database permissions to update the |
909 | 909 | // information.schema tables. |
910 | 910 | $mysql_database_engine = 'InnoDB'; |
| 911 | + |
| 912 | +// The subscriber totals for each list on the lists page are calculated by sending a sequence of asynchronous requests. |
| 913 | +// You can include a delay between requests using this setting. The value is in milliseconds. |
| 914 | +define('ASYNC_REQUEST_INTERVAL', 0); |
0 commit comments