Hi all,
as google sent an email to me that i can not use username and password authentification for sending mails via SMTP in near future, i wanted to try xmpp as an alternative.
I am using the following options (configured in the GUI):
--send-xmpp-any-operation=true
--send-xmpp-level=All
--send-xmpp-message=Duplicati %PARSEDRESULT%, %OPERATIONNAME% report for %backup-name%
--send-xmpp-username=https://username@jabber.de
--send-xmpp-password=password
--send-xmpp-to=receiver@jabber.de
I am not receiving any messages on jabber nor any log messages which would indicate that something is wrong.
I was introducing https:// for the username option as the jabber.de server accepts only TLS connections and looking at the duplicati source code, i see that having https:// in the username option will trigger a secured connection.
So my first issue is how to get some logging output. Currently i am using this cli options when starting the service (from ubuntu linux):
/usr/bin/duplicati-server $DAEMON_OPTS --webservice-port=8200 --webservice-interface=any --debug-output=true --console-log-level=Information
But i dont get any message indicating an error.
So i also tried to configure a log file, but i just stays empty.
/usr/bin/duplicati-server $DAEMON_OPTS --webservice-port=8200 --webservice-interface=any --debug-output=true --log-file=/var/log/duplicati.log --log-file-log-level=Information
Any ideas how i could get some more information which could help to understand whats going wrong here?