@sdetweil said in Default Calendar Module not showing some recurring events.:
npm install node-ical@0.16.1
That did the trick, been scratching my head for a while.
Thanks!
@sdetweil said in Default Calendar Module not showing some recurring events.:
npm install node-ical@0.16.1
That did the trick, been scratching my head for a while.
Thanks!
@sdetweil said in Default Calendar Module not showing some recurring events.:
npm install node-ical@0.16.1
That did the trick, been scratching my head for a while.
Thanks!
I started experimenting with the Magic Mirror a few days ago, setting up something for my mother in-law, who is now 80+.
The idea of sending messages to her magic mirror is really attractive.
I have everything configured, and email seems to be downloading. It shows in the log file
0|mm | [10.03.2024 11:45.10.898] [LOG] MMM-MailMessage-Helper: Mailbox Closed: INBOX
0|mm | [10.03.2024 11:45.10.944] [LOG] Mail-Seach complete
0|mm | [10.03.2024 11:45.11.569] [LOG] 8 Mails fetched
I believe the configuration shown on the git page is slightly wrong, where the commas should be outside the closing curly bracket and not inside.
{
module: 'MMM-MailMessage',
position: 'middle_center',
header: 'Email - Mirror Messages',
config:{
user: 'MMemail@mydomain.com',
pass: 'password',
host: 'mail.mydomain.com',
port: 993,
subjectlength: 50,
validSenders: [ { addr: "dad@mydomain.com", name: "Dad", color: "#00ff00", }
{ addr: "mom@mydomain.com", name: "Mom", color: "#ff0000", }
{ addr: "son@mydomain.com", name: "Billy", }
{ addr: "nana@mydomain.com", name: "Nana", }
],
daysToDisplay: 0,
msgsToDisplay: 2,
colorText: "#0000ff",
},
},
I have changed that, and obviously the email addresses, nicks and tried a few different colours, but I am not getting any messages on the MM. What could I be doing wrong here?
@UncleRoger
I am trying to get the MMM-MailMessage to work for my mother in law, so that we can easily display messages for her. First Magic Mirror project and I really like it.
Its not quite there yet for me though
The download logs shows that emails are downloaded.
[10.03.2024 11:20.28.332] [LOG] NEUE EMAIL VON…
| [10.03.2024 11:20.28.552] [LOG] 9 Mails fetched
The documentation is not 100% clear to me, but that may be me :-)
Could it be that the commas in the description are at the wrong place and should be outside the curly bracket?
validSenders: [ { addr: "dad@mydomain.com", name: "Dad", color: "#00ff00", }
{ addr: "mom@mydomain.com", name: "Mom", color: "#ff0000", }
{ addr: "son@mydomain.com", name: "Billy", }
{ addr: "nana@mydomain.com", name: "Nana", }
],
adding a common outside makes the check go through, but I still do not see anything on the display. I took them away inside and still no messages on the screen.
What am I doing wrong? (I have obviously replaced the email addresses with valid ones from which I can send test emails:-))