7 lines
141 B
Python
7 lines
141 B
Python
|
from orchestra.contrib.settings import Setting
|
||
|
|
||
|
|
||
|
MAILER_DEFERE_SECONDS = Setting('MAILER_DEFERE_SECONDS',
|
||
|
(300, 600, 60*60, 60*60*24),
|
||
|
)
|