TT#33108 fix faxserver template email_from

* '[% mail_from %]' is used for
       fax_receive_ok_default_email instead
       of the constant text

Change-Id: Ief3d342617b1d98a035b21337098571f5ae9d8cb
changes/90/23990/1
Kirill Solomko 7 years ago
parent 3b78bd1d4e
commit 4523f70509

@ -0,0 +1,8 @@
SET autocommit=0;
USE billing;
UPDATE email_templates set from_email = 'Sipwise NGCP FaxServer <voipfax@ngcp.sipwise.local>'
WHERE name = 'fax_receive_ok_default_email'
AND reseller_id IS NULL;
COMMIT;

@ -0,0 +1,8 @@
SET autocommit=0;
USE billing;
UPDATE email_templates set from_email = '[% mail_from %]'
WHERE name = 'fax_receive_ok_default_email'
AND reseller_id IS NULL;
COMMIT;
Loading…
Cancel
Save