Hi Ioannis,Please make sure you have setup the right values for the following env vars in your installationBest,
Holman Romero said:Hi Ioannis,
Please make sure you have setup the right values for the following env vars in your installationBest,
Holman Romero said:Hi Ioannis,
You must have an email server Superdesk can use, it can be Postfix or any other. The env vars are just to provide Superdesk with the connection data to the email server so that Superdesk can make use of it.Best,
Holman Romero said:Hi Ioannis,
You must have an email server Superdesk can use, it can be Postfix or any other. The env vars are just to provide Superdesk with the connection data to the email server so that Superdesk can make use of it.Best,
Ioannis said:
Holman Romero said:Hi Ioannis,
You must have an email server Superdesk can use, it can be Postfix or any other. The env vars are just to provide Superdesk with the connection data to the email server so that Superdesk can make use of it.Best,
I have installed a Postfix server. I tested it and it sends emails.I have set the user and password on the /opt/superdesk/env.sh file but when i try to reset a password on a created user i don't get an email.Is there a log file i should search?
Carl Gustafsson said:Im totally new on setting up servers and working in Ubuntu. I have the same problem that I can´t set up new users as they don´t get their confirmation token. Superdesk is on a VPS installation. I spend around 5 hours googeling and reading a lot of documentations for example the ones linked above. I understand that I need to have a mailserver and I understand how that work. I tried to figure out how Flask works but as Im a totally newbie on servers and Ubuntu I got more and more confused and around midnight I gave up.
So i wonder if someone could give some simple hand on instructions on how to setup the mailserver on Superdesk on a VPS.ThanksCarl
For example to use a gmail account ..
# assuming your gmail account is somegai@gmail.com (and you are using tls)
# for TLS: set MAIL_PORT=587, MAIL_USE_TLS=True and MAIL_USE_SSL=False
# for SSL: set MAIL_PORT=465, MAIL_USE_TLS=False and MAIL_USE_SSL=True
# settings in /etc/envirnment
MAIL_SERVER='smtp.gmail.com'
MAIL_PORT=587
MAIL_USE_TLS=True
MAIL_USE_SSL=False
MAIL_USERNAME='somegai@gmail.com'
MAIL_PASSWORD='your-gmail-password' # or configured app password if using 2-factor auth
MAIL_DEFAULT_SENDER='somegai@gmail.com'
ADMINS=['user1','user2'] # this is not so important to setup for starters
Just read up Gmail guide on setting up an imap mail client like thunderbird .. or setup thunderbird to read your gmail, and then copy the settings from thunderbird and add them to /etc/environment
It looks like you're new here. If you want to get involved, click one of these buttons!