mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
ENH: use a non existing domain in install data
The domain domain.com is an existing domain. If a user tests email sending with the default value, it will make useless requests to the domain.com domain. Here, I propose to change it by domain.tld, which can't exist
This commit is contained in:
parent
634cbf4b71
commit
e68b8652ad
|
|
@ -50,7 +50,7 @@ insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_M
|
|||
|
||||
insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_MAIL_SMTP_SERVER','','chaine','Host or ip address for SMTP server',0,1);
|
||||
insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_MAIL_SMTP_PORT','','chaine','Port for SMTP server',0,1);
|
||||
insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_MAIL_EMAIL_FROM','robot@domain.com','chaine','email emitter for Dolibarr automatic emails',0,1);
|
||||
insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_MAIL_EMAIL_FROM','robot@domain.tld','chaine','email emitter for Dolibarr automatic emails',0,1);
|
||||
|
||||
--
|
||||
-- IHM
|
||||
|
|
@ -87,7 +87,7 @@ insert into llx_const (name, value, type, note, visible) values ('MAIN_DELAY_EXP
|
|||
-- Mail Mailing
|
||||
--
|
||||
--insert into llx_const (name, value, type, note, visible) values ('MAIN_FIX_FOR_BUGGED_MTA','1','chaine','Set constant to fix email ending from PHP with some linux like system',1);
|
||||
insert into llx_const (name, value, type, note, visible) values ('MAILING_EMAIL_FROM','no-reply@mydomain.com','chaine','EMail emmetteur pour les envois d emailings',0);
|
||||
insert into llx_const (name, value, type, note, visible) values ('MAILING_EMAIL_FROM','no-reply@mydomain.tld','chaine','EMail emmetteur pour les envois d emailings',0);
|
||||
|
||||
|
||||
--
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user