Hi,
Gargoyle 1.8.1 Email no SSL 1.0.1
Can someone point me to the location for the current Email plugin? My selection for the "Recently Visited Sites" does not stick. I have seen there is an update for 1.9, how do I download the email package for 1.9, I would like to compare and add the changes.
Thanks
Wayne
Email notifications plugin revisited
Moderator: Moderators
Re: Email notifications plugin revisited
Linksys wrt1200ac - gargoyle 1.12.0
Re: Email notifications plugin revisited
Latest sourcecode is here
https://github.com/ericpaulbishop/gargo ... ifications
You can't install a plugin from 1.9.2 onto 1.8.1
https://github.com/ericpaulbishop/gargo ... ifications
You can't install a plugin from 1.9.2 onto 1.8.1
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.
Please be respectful when posting. I do this in my free time on a volunteer basis.
Re: Email notifications plugin revisited
Thanks Lantis, I am trying to investigate the issue with the recent sites setting not saving under 1.8.1, not sure how much success I will haveLantis wrote:Latest sourcecode is here
https://github.com/ericpaulbishop/gargo ... ifications
You can't install a plugin from 1.9.2 onto 1.8.1
Linksys wrt1200ac - gargoyle 1.12.0
-
- Posts: 2
- Joined: Mon Jul 10, 2017 1:55 pm
Re: Email notifications plugin revisited
I'm apologize for even having to ask this question, and if there's a wiki, post or forum that addresses this, please feel free to point me there so you folks can get back to business...
Any chance I could ask someone to take a few minutes to walk me through the installation of this plugin, step-by-step? You know, like you would speak to a small, not very bright child? PM preferred so I don't sidetrack this thread.
I've been a Windows admin for quite a while, and despite having spent the better part of 2 hours trying to figure out how to install this script, I'm still pretty clueless. And by pretty clueless, I mean totally. But I'm a quick study!
I love Gargoyle for it's quota controls and it solved a ton of problems for me, but the email piece is one that would nail down the last piece of my puzzle.
Any help would be appreciated.
Any chance I could ask someone to take a few minutes to walk me through the installation of this plugin, step-by-step? You know, like you would speak to a small, not very bright child? PM preferred so I don't sidetrack this thread.
I've been a Windows admin for quite a while, and despite having spent the better part of 2 hours trying to figure out how to install this script, I'm still pretty clueless. And by pretty clueless, I mean totally. But I'm a quick study!
I love Gargoyle for it's quota controls and it solved a ton of problems for me, but the email piece is one that would nail down the last piece of my puzzle.
Any help would be appreciated.
Re: Email notifications plugin revisited
First you need a 8 MB router or greater (will be one of the more powerful routers)






-
- Posts: 2
- Joined: Mon Jul 10, 2017 1:55 pm
Re: Email notifications plugin revisited
Oh geez, I'm an idiot. Thank you. I was making this WAY more complicated that it needed to be.
- alienheartbeat
- Posts: 22
- Joined: Fri Feb 15, 2013 6:59 am
- Location: Hong Kong
- Contact:
Re: Email notifications plugin revisited
Just a small time-saving note for someone installing this for the first time.
If using smtp.gmail.com as the server,
and encryption = TLS,
then port 465 doesn't work
( daemon.err uhttpd[1865]: sendmail: could not send mail (account default from /etc/msmtprc))
have to set the port to 587.
Not sure why, but not very important.
If using smtp.gmail.com as the server,
and encryption = TLS,
then port 465 doesn't work
( daemon.err uhttpd[1865]: sendmail: could not send mail (account default from /etc/msmtprc))
have to set the port to 587.
Not sure why, but not very important.
http://alien-heartbeat.com
Re: Email notifications plugin revisited
Just to add to this.
I was also have the same issue of email not being sent at scheduled times (but the test email was working)
It was on also on a TP-Link TL-WDR3600
The email.sh, however, was in
/plugin_root/usr/lib/gargoyle
I changed permission to 744:
chmod 744 /plugin_root/usr/lib/gargoyle/email.sh
and edited that email.sh file and changed the last few lines from:
to
I was also have the same issue of email not being sent at scheduled times (but the test email was working)
It was on also on a TP-Link TL-WDR3600
The email.sh, however, was in
/plugin_root/usr/lib/gargoyle
I changed permission to 744:
chmod 744 /plugin_root/usr/lib/gargoyle/email.sh
and edited that email.sh file and changed the last few lines from:
Code: Select all
then
cat /tmp/email-log.txt | sendmail $receiver
else
cat /tmp/email-log.txt | sendmail --tls-trust-file $tlscert $receiver
fi
Code: Select all
then
cat /tmp/email-log.txt | /usr/sbin/sendmail $receiver
else
cat /tmp/email-log.txt | usr/sbin/sendmail --tls-trust-file $tlscert $receiver
fi