@Tiller said in MMM-CalDAV:
CALDAV_SERVICE_USERNAME=
CALDAV_SERVICE_USERNAME=For SYNOLOGY
SYNOLOGY_username=username1
SYNOLOGY_password=password1
I think you may have confusing the username and password for the server and the module.
SYNOLOGY_username=username1
SYNOLOGY_password=password1
This is for your Synology Caldav Server, usually it is your account id/password to login Synology Server (Or Synology calendar account)
CALDAV_SERVICE_USERNAME=username2
CALDAV_SERVICE_PASSWORD=password2
This is a different thing. It is used for your MM calendar module. This module provide a secure calendar ics host by itself with this auth information. You should need to set your calendar config like this;
// default calendar module.
{
module: "calendar",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check",
url: "http://localhost:8080/CALDAV/SYNOLOGY_Family.ics",
auth: { // REQUIRED
user: 'username2', // <= used here (CALDAV_SERVICE_USERNAME)
pass: 'password2', // <= used here (CALDAV_SERVICE_PASSWORD)
method: 'basic'
}
},
...