Jump to content

Notify Me! - Notifications and alerts (v1.0.0.2)


ImportBot

Recommended Posts

Originally Posted by MorpheusX(AUT)*:

 

Sending emails works fine for me.

 

Which settings do you use?

Which types of mailserver-connection (SSL on/off, using Gmail)?

 

As already mentioned, I was not able to use the standard Gmail-SMTP servers (smtp.googlemail.com Port 465 with SSL) since the .NET SMTP Client seems sometimes not to work properly with SSL-Connections.

 

If you're using SSL: can you try using a non-SSL server and see if that works?

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by capei*:

 

Same - still doesn't work for me either.

What email providers are you all using? I haven't been able to download and try this yet, but I use Gmail and am wondering if anyone has been successful with getting Gmail to work.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

could you give me an example of this please ?

Uuuuuuh, I don't know, my own mail-server provides both SSL and non-SSL access, maybe your provider (for test-purposes maybe even the one of your private email address for a ISP_) also provides an "older" access?

 

EDIT: another thing that might be worth trying:

 

If you're using Gmail, please change the port to 587. Maybe, this will work for you.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by capei*:

 

OK. So I tested everything and here's the results.

 

Using port 587 or 465 does not work; I do receive an error saying that there was an "authentication error" (even though the credentials are correct). I did a Google Search and it might have something to do with Mono (under Linux). I imported the certificates and tried again. Then every time an admin was called, the Layer crashed.

 

I changed everything to use aspmx.l.google.com, port 25 and now emails are sent successfully, though they are sadly throw into my Spam inbox. Was hoping to have this sent to my normal inbox, as my phone makes noise when I get new email and would really be useful for this plugin. But I suppose this will have to do for now.

 

Hope this helps. :smile:

 

EDIT: For reference, I'm running everything under an Ubuntu 64-bit server with Mono. Results could change by varying server environments. :ohmy:

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

Using port 587 or 465 does not work; I do receive an error saying that there was an "authentication error" (even though the credentials are correct). I did a Google Search and it might have something to do with Mono (under Linux). I imported the certificates and tried again. Then every time an admin was called, the Layer crashed.

Do you use two-factor authentication for your Google account by any chance?

I had the same problem when testing it and figured I had to create an application-specific password since I'm using 2FA and that doesn't work with the SMTP client :biggrin:

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by capei*:

 

OK. So I tested everything and here's the results.

 

Using port 587 or 465 does not work; I do receive an error saying that there was an "authentication error" (even though the credentials are correct). I did a Google Search and it might have something to do with Mono (under Linux). I imported the certificates and tried again. Then every time an admin was called, the Layer crashed.

 

I changed everything to use aspmx.l.google.com, port 25 and now emails are sent successfully, though they are sadly throw into my Spam inbox. Was hoping to have this sent to my normal inbox, as my phone makes noise when I get new email and would really be useful for this plugin. But I suppose this will have to do for now.

 

Hope this helps. :smile:

 

EDIT: For reference, I'm running everything under an Ubuntu 64-bit server with Mono. Results could change by varying server environments. :ohmy:

Not using 2-step verification. :smile:

 

Checked again with previous settings and it always crashes the layer. :/

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DHGreenday*:

 

To add I've been using procon email notifier plug in as it has server status reports every user defined time so I could see how they were going. The settings are the same but works fine. I also have it set to use ssl.

 

Edit: maybe the 2 plugins are interfering with each other?

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

The "Procon Email Notifier" plugin is working fine for you with Gmail and SSL, but NotifyMe is not?

 

It actually uses quite the same code, although I have just added a timeout so sending emails don't hog up the whole plugin. If you wanted, you could go ahead and open the CNotifyMe.inc file (in your Plugins) folder, navigate to line 751 and change these three lines

 

Code:

smtp.Timeout = 10000;smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = false;
to this

 

Code:

//smtp.Timeout = 10000;smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
//smtp.UseDefaultCredentials = false;
This will basically disable the Timeout for sending and remove the DefaultCredential property (which shouldn't influence it at all, but that's one of the few things that differ between the plugins.

 

Let me know if that changes anything for you.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by IAF-SDS*:

 

Morpheus, thanks for the fix. I just tested it and it works great now

 

I think you're seeing people still having an issue because your 1.0.0.2 download has not been updated itself.

 

The way I was able to get the correct updated version was to go to your Github page directly at https://github.com/MorpheusXAUT/Noti.CNotifyMe.inc and copy all of the updated code, then replacing the old code with the new update directly into the CNotifyMe.inc file.

 

There's going to be confusion if you leave the 1.0.0.2 zip download not updated itself.

 

 

Thanks again Morpheus.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by capei*:

 

Same here....never got an error, which, I actually would have preferred to have gotten an error since it would have made debugging easier.

 

Anyhow, using standard (Non-SSL) works for GMail users at the moment; hopefully something can be done in the future to fix it for SSL.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by SmackDown*:

 

Morpheus, thanks for the fix. I just tested it and it works great now

 

I think you're seeing people still having an issue because your 1.0.0.2 download has not been updated itself.

 

The way I was able to get the correct updated version was to go to your Github page directly at https://github.com/MorpheusXAUT/Noti.CNotifyMe.inc and copy all of the updated code, then replacing the old code with the new update directly into the CNotifyMe.inc file.

 

There's going to be confusion if you leave the 1.0.0.2 zip download not updated itself.

 

 

Thanks again Morpheus.

This fixed it for me, thank you for the information. You saved me a lot of headache trying to figure out why it stopped sending email.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

Morpheus, thanks for the fix. I just tested it and it works great now

 

I think you're seeing people still having an issue because your 1.0.0.2 download has not been updated itself.

 

The way I was able to get the correct updated version was to go to your Github page directly at https://github.com/MorpheusXAUT/Noti.CNotifyMe.inc and copy all of the updated code, then replacing the old code with the new update directly into the CNotifyMe.inc file.

 

There's going to be confusion if you leave the 1.0.0.2 zip download not updated itself.

 

 

Thanks again Morpheus.

Hm, weird, GitHub should have updated the zip itself. I'll see if I can fix this.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DHGreenday*:

 

Procon email notifier seems to override notify me. I don't know why. It works with the update using ssl as long as procon email notifier isn't turned on. But then the 2 line changes you posted might fix that.

 

Can I make suggestions on extra feature ideas here?

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

Procon email notifier seems to override notify me. I don't know why. It works with the update using ssl as long as procon email notifier isn't turned on. But then the 2 line changes you posted might fix that.

Huh, weird. I couldn't think of any reason why those plugins would mess with each other.

Did you actually try and change the two lines I've posted? Or did you just run 1.0.0.2 without the email notifier to get it working?

 

Can I make suggestions on extra feature ideas here?

I prefer GitHub issues, however if you're not registered there (or don't want to bother registering), go ahead and post them here :smile:

 

i use version 1.0.0.0 and no have problems

Does sending via SSL work fine for you with 1.0.0.0?

If you haven't tried yet: could you create a copy/backup and try 1.0.0.2 and see if that also works fine for you?

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DHGreenday*:

 

I haven't changed those 2 lines yet so it maybe the cause. I will try it and test it later and let you know Thanks for the help there.

 

I will post here my ideas.

 

I'm trying to make it possible that I can admin the server just by being notified by email so I don't have to keep watching or review the chat etc for stuff that needs admin intervention.

 

I will list what would be helpful and point out which one was good with your plugin.

 

1, An option to disable buzzwords from being highlighted in chat but instead silently sent to an email address. For example, cancer. If I get an immediate email telling me that someone has said this word then I can go and check in what context the word was used so that I can action if necessary.

 

2, An email silently sent if a player is spamming the chat with the same word for example camper, so that I can intervene accordingly as the player spamming the same thing over and over may annoy other players. A list of words separate to the buzzwords that is only triggered on a set multiples of times.

 

3, You could have server reports added to your plugin like procon email notifier with an option to use another email address separate from the one that is sent when someone types !admin.

 

Ok so basically 1, for definite, 2, may already have a plugin that does things automatically but could be nice to have the opportunity to intervene personally, 3, If procon email notifier does it and there is no interference then it probably is not needed.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

nope sorry it dont work even with the 2 lines commented out :sad:

Hmm okay, I kind of expected it not to work with those lines disabled, that would have been very weird. From the looks of it, this is caused by issues with the .NET implementation and thus is out of reach for me to fix :-\
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

1, An option to disable buzzwords from being highlighted in chat but instead silently sent to an email address. For example, cancer. If I get an immediate email telling me that someone has said this word then I can go and check in what context the word was used so that I can action if necessary.

Hm, that should be doable. Will require a few changes though, but I have something planned anyways, which will probably be implemented around end of January.

 

2, An email silently sent if a player is spamming the chat with the same word for example camper, so that I can intervene accordingly as the player spamming the same thing over and over may annoy other players. A list of words separate to the buzzwords that is only triggered on a set multiples of times.

Should also be doable, but will also take a bit more time.

 

3, You could have server reports added to your plugin like procon email notifier with an option to use another email address separate from the one that is sent when someone types !admin.

That's kind of out of the plugin's scope since the main functionality was meant to be notifying admins about player requests.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DHGreenday*:

 

Huh, weird. I couldn't think of any reason why those plugins would mess with each other.

Did you actually try and change the two lines I've posted? Or did you just run 1.0.0.2 without the email notifier to get it working

This is what the 2 lines look like in my notepad++ after adding the // in normal notepad does that look right?

 

751 //smtp.Timeout = 10000;

752 smtp.DeliveryMethod = SmtpDeliveryMethod.Network;

753 //smtp.UseDefaultCredentials = false;

754 smtp.Credentials = new NetworkCredential(this.strSMTPUser, this.strSMTPPassword);

755 smtp.Send(email);

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

This is what the 2 lines look like in my notepad++ after adding the // in normal notepad does that look right?

 

751 //smtp.Timeout = 10000;

752 smtp.DeliveryMethod = SmtpDeliveryMethod.Network;

753 //smtp.UseDefaultCredentials = false;

754 smtp.Credentials = new NetworkCredential(this.strSMTPUser, this.strSMTPPassword);

755 smtp.Send(email);

Yup, should be fine.

However, it seems like this didn't help :sad:

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DHGreenday*:

 

Yup, should be fine.

However, it seems like this didn't help :sad:

Its just weird that I can't seem to use notify me in conjuction with procon email notifier because procon email notifier seems to block notify me. Notify me works when email notifier is disabled but will be overridden when its switched on again. So weird.
* Restored post. It could be that the author is no longer active.
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Our picks

    • Game Server Hosting:

      We're happy to announce that EZRCON will branch out into the game server provider scene. This is a big step for us so please having patience if something doesn't go right in this area. Now, what makes us different compared to other providers? Well, we're going with the idea of having a scaleable server hosting and providing more control in how you set up your server. For example, in Minecraft, you have the ability to control how many CPU cores you wish your server to have access to, how much RAM you want to use, how much disk space you want to use. This type of control can't be offered in a single service package so you're able to configure a custom package the way you want it.

      You can see all the available games here. Currently, we have the following games available.

      Valheim (From $1.50 USD)


      Rust (From $3.20 USD)


      Minecraft (Basic) (From $4.00 USD)


      Call of Duty 4X (From $7.00 USD)


      OpenTTD (From $4.00 USD)


      Squad (From $9.00 USD)


      Insurgency: Sandstorm (From $6.40 USD)


      Changes to US-East:

      Starting in January 2022, we will be moving to a different provider that has better support, better infrastructure, and better connectivity. We've noticed that the connection/routes to this location are not ideal and it's been hard getting support to correct this. Our contract for our two servers ends in March/April respectively. If you currently have servers in this location you will be migrated over to the new provider. We'll have more details when the time comes closer to January. The new location for this change will be based out of Atlanta, GA. If you have any questions/concerns please open a ticket and we'll do our best to answer them.
      • 5 replies
    • Hello All,

      I wanted to give an update to how EZRCON is doing. As of today we have 56 active customers using the services offered. I'm glad its doing so well and it hasn't been 1 year yet. To those that have services with EZRCON, I hope the service is doing well and if not please let us know so that we can improve it where possible. We've done quite a few changes behind the scenes to improve the performance hopefully. 

      We'll be launching a new location for hosting procon layers in either Los Angeles, USA or Chicago, IL. Still being decided on where the placement should be but these two locations are not set in stone yet. We would like to get feedback on where we should have a new location for hosting the Procon Layers, which you can do by replying to this topic. A poll will be created where people can vote on which location they would like to see.

      We're also looking for some suggestions on what else you would like to see for hosting provider options. So please let us know your thoughts on this matter.
      • 4 replies
    • Added ability to disable the new API check for player country info


      Updated GeoIP database file


      Removed usage sending stats


      Added EZRCON ad banner



      If you are upgrading then you may need to add these two lines to your existing installation in the file procon.cfg. To enable these options just change False to True.

      procon.private.options.UseGeoIpFileOnly False
      procon.private.options.BlockRssFeedNews False



       
      • 2 replies
    • I wanted I let you know that I am starting to build out the foundation for the hosting services that I talked about here. The pricing model I was originally going for wasn't going to be suitable for how I want to build it. So instead I decided to offer each service as it's own product instead of a package deal. In the future, hopefully, I will be able to do this and offer discounts to those that choose it.

      Here is how the pricing is laid out for each service as well as information about each. This is as of 7/12/2020.

      Single MySQL database (up to 30 GB) is $10 USD per month.



      If you go over the 30 GB usage for the database then each additional gigabyte is charged at $0.10 USD each billing cycle. If you're under 30GB you don't need to worry about this.


      Databases are replicated across 3 zones (regions) for redundancy. One (1) on the east coast of the USA, One (1) in Frankfurt, and One (1) in Singapore. Depending on the demand, this would grow to more regions.


      Databases will also be backed up daily and retained for 7 days.




      Procon Layer will be $2 USD per month.


      Each layer will only allow one (1) game server connection. The reason behind this is for performance.


      Each layer will also come with all available plugins installed by default. This is to help facilitate faster deployments and get you up and running quickly.


      Each layer will automatically restart if Procon crashes. 


      Each layer will also automatically restart daily at midnight to make sure it stays in tip-top shape.


      Custom plugins can be installed by submitting a support ticket.




      Battlefield Admin Control Panel (BFACP) will be $5 USD per month


      As I am still working on building version 3 of the software, I will be installing the last version I did. Once I complete version 3 it will automatically be upgraded for you.





      All these services will be managed by me so you don't have to worry about the technical side of things to get up and going.

      If you would like to see how much it would cost for the services, I made a calculator that you can use. It can be found here https://ezrcon.com/calculator.html

       
      • 11 replies
    • I have pushed out a new minor release which updates the geodata pull (flags in the playerlisting). This should be way more accurate now. As always, please let me know if any problems show up.

       
      • 9 replies
×
×
  • Create New...

Important Information

Please review our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.