<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Modules]]></title><description><![CDATA[<p dir="auto">I do not have much experience but I have it working, but when I want to put ADULT MODULES I get this error. Copy all in config / config.js<br />
And I charge the program in MODULES. Can you help me. Thank you so much.<img src="/assets/uploads/files/1489629888659-img_1088-resized.jpeg" alt="0_1489629881375_IMG_1088.JPG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/topic/2085/modules</link><generator>RSS for Node</generator><lastBuildDate>Wed, 12 Aug 2026 15:27:30 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/2085.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 Mar 2017 02:05:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Modules on Sun, 21 May 2017 08:31:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a>  I had install as your explanation, everything works, but no new emails are displaying, always have “no new email” and I have some there. How can I solve the issue? Many thanks in advance.</p>
]]></description><link>https://forum.magicmirror.builders/post/21875</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21875</guid><dc:creator><![CDATA[lsaguiar]]></dc:creator><pubDate>Sun, 21 May 2017 08:31:51 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 15:52:37 GMT]]></title><description><![CDATA[<p dir="auto">Please send me your teamviewer id and the password, I contacted you via chat</p>
]]></description><link>https://forum.magicmirror.builders/post/17601</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17601</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Thu, 16 Mar 2017 15:52:37 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 15:34:25 GMT]]></title><description><![CDATA[<p dir="auto">Yes, my mirror works but adding MODULES does not work anymore and I have everything like that, I have TeamViewer on the raspberry 3 if you want to login. My email is <a href="mailto:gmigliarini@cox.net" target="_blank" rel="noopener noreferrer nofollow ugc">gmigliarini@cox.net</a>.</p>
]]></description><link>https://forum.magicmirror.builders/post/17598</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17598</guid><dc:creator><![CDATA[gmigliarini]]></dc:creator><pubDate>Thu, 16 Mar 2017 15:34:25 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 15:21:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gmigliarini" aria-label="Profile: gmigliarini">@<bdi>gmigliarini</bdi></a></p>
<p dir="auto">Just to be sure … did you git clone the email module into the right module folder?</p>
<pre><code class="language-bash">cd ~/MagicMirror/modules
git clone https://github.com/ronny3050/email-mirror.git email
cd email
npm install
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/17597</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17597</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Thu, 16 Mar 2017 15:21:45 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 14:52:16 GMT]]></title><description><![CDATA[<p dir="auto">Many thanks for the help try everything and it does not work, my mirror works normally but when putting a MODULE does not work anymore. My email is <a href="mailto:gmigliarini@cox.net" target="_blank" rel="noopener noreferrer nofollow ugc">gmigliarini@cox.net</a> and I have TEAMVIEWER placed and you can enter. Thank you so much.</p>
]]></description><link>https://forum.magicmirror.builders/post/17593</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17593</guid><dc:creator><![CDATA[gmigliarini]]></dc:creator><pubDate>Thu, 16 Mar 2017 14:52:16 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 03:44:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gmigliarini" aria-label="Profile: gmigliarini">@<bdi>gmigliarini</bdi></a><br />
ok, to add this to your config here is an example on adding it between other modules already in your config.js file</p>
<pre><code>             {
			module: 'helloworld',
			position: 'top_bar',
			classes: 'small bright',
			config: {
			text: 'Magic Mirror!'
		}
		},   // Mine ends here at the },
                {   //Yours starts here at the {
                        module: ‘email’,
                        position: ‘bottom_left’,
                        header: ‘Email’,
                        config:{
                        user: ‘johndoe@gmail.com’,
                        password: ‘xxx’,
                        host: ‘imap.gmail.com’,
                        port: 993,
                        tls: true,
                        authTimeout: 10000,
                        numberOfEmails: 5,
                        fade: true
                }   // No comma here!
                },  // Yours ends here at the },
                {   // Another one of mine begins
			module: 'updatenotification',
			position: 'top_bar',
			config: {
			updateInterval: 600000 // (10 minutes);
		}
		},
</code></pre>
<p dir="auto">Notice how there are no <code>[</code> or <code>]</code> in what you are adding. And also notice that I changed the last 2 <code>}</code> of yours. I removed the comma from the 2nd to last <code>}</code> and added a comma to the last <code>}</code>. Do the same when you  add your entry. Look at mine to see how to add it correctly.</p>
]]></description><link>https://forum.magicmirror.builders/post/17563</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17563</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Thu, 16 Mar 2017 03:44:02 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 15:18:24 GMT]]></title><description><![CDATA[<p dir="auto">Using the module</p>
<p dir="auto">To use this module, add it to the modules array in the config/config.js file:</p>
<pre><code>modules: [
    {
        module: 'email',
            position: 'bottom_left',
            header: 'Email',
            config:{
                user: 'johndoe@gmail.com',
                password: 'xxx',
                host: 'imap.gmail.com',
                port: 993,
                tls: true,
                authTimeout: 10000,
                numberOfEmails: 5,
                fade: true
        },
    }
]
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/17562</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17562</guid><dc:creator><![CDATA[gmigliarini]]></dc:creator><pubDate>Thu, 16 Mar 2017 15:18:24 GMT</pubDate></item><item><title><![CDATA[Reply to Modules on Thu, 16 Mar 2017 02:27:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gmigliarini" aria-label="Profile: gmigliarini">@<bdi>gmigliarini</bdi></a> said in <a href="/post/17560">Modules</a>:</p>
<blockquote>
<p dir="auto">Can you help me. Thank you so much.</p>
</blockquote>
<p dir="auto">Post your config here so people can see what the problem is. Someone will help you</p>
]]></description><link>https://forum.magicmirror.builders/post/17561</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17561</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Thu, 16 Mar 2017 02:27:34 GMT</pubDate></item></channel></rss>