Actions
Bug #3189
closedAllow DragonFly Mail Agent to accept an alternate config via command line switch
Description
If DMA could accept a path to a different config file when executed it would allow user the option of using different sending accounts.
This could be handy for situations where I want to send out via different smarthosts.
On line 578 of dma.c it shows the config path is hardcoded when compiled:
parse_conf(CONF_PATH "/dma.conf");
If this was changed to
parse_conf(CONF_PATH CONF_SUB_PATH "/dma.conf");
The CONF_SUB_PATH could be something like hotmail or gmail or livemail etc.. and the relevant config could be pulled out and used.
This may have an effect on spooled messages, perhaps they should be in CONF_SUB_PATH as well.
Would this cause too many other issues?
Actions