From: Corey W. <co...@ha...> - 2020-03-06 19:26:25
|
On Fri, Mar 6, 2020, at 6:26 AM, Dustin Miller wrote: > On Thu, 23 Jan 2020 17:20:53 +0600 > Dustin Miller <du...@gm...> wrote: > > If the mail server is no longer functioning, should it be possible for > > me to point the program to the SMTP mail server of one of my email > > addresses by entering the right information when doing a 'local' > > install (i.e. w/o an account connected to the server, etc.)? If so, > > can anyone provide me with guidelines in regards to what info needs > > to be entered? > > > DM: I just tried this by using Gmail's SMTP server but the local > install process didn't give me a place to enter my login credentials. > So it looks like these must be hard-coded? Would anyone be able to > point me to where in the code this would be and if it should be a > relatively easy (i.e. replacing a text string) thing to change? Thanks, > ---Dustin Hey Dustin, >From what I can find via the source, it looks like the domain and port are set in the data/config.xml.tmpl file: > <smtp> > <host default="send.one.com">send.one.com</host> > <port default="2525">2525</port> > </smtp> Then looks like the credentials are in src/ReportBase.cpp, lines 145 - 146. You'll have to change those too. I hope that works for you. Corey |