Jump to content

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


ImportBot

Recommended Posts

Originally Posted by droopie*:

 

is anyone using rconhostingservices.net with this plugin? i am not having luck with this plugin working to send emails but with the exact same settings on my local computer it sends the email fine...

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

Originally Posted by Master_Pain*:

 

Hi, the plugin works very well on our BF3 servers. BUT.. I get two emails, everytime.

Heard anything about that?

I am having this happen too. 1 notification in the plugin area, and 2 emails.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

is anyone using rconhostingservices.net with this plugin? i am not having luck with this plugin working to send emails but with the exact same settings on my local computer it sends the email fine...

You will probably have to ask them to check permissions/sandbox again. Maybe they haven't enabled exceptions for SMTP/needed Ports, so mails can't go out. Are you receiving any messages in the plugin console?

 

I am having this happen too. 1 notification in the plugin area, and 2 emails.

As said to fredrict in a PM: I will have a look at that bug (haven't seen it yet, or gmail simply filters out the second mail pretty efficient :biggrin:), but it will take until February. Sorry you'll have to wait, but my time is limited atm.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

can someone please explain how to configure email notification? i want to use it with gmail account

A few pages before, someone posted settings for GMAIL-Accounts:

 

If you want to use Gmail:

Use SSL? -> Yes

SMTP - Server address -> smtp.gmail.com

SMTP - Server port -> 587

Haven't tried them myself though.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by TMiland*:

 

Hello,

 

i have configured this for gmail, and i receive this error:

Error in Emailsender(Procon plugin sandbox turned off__, check your credentials): System.Net.Mail.SmtpException: Operasjonen ble tidsavbrutt.

ved System.Net.Mail.SmtpClient.Send(MailMessage message)

ved PRoConEvents.CEmailNotifier.Emailsender(String Subject, String Emailbody)

Any help is appreciated!

 

Regards.

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

Originally Posted by Android2020*:

 

Really really nice plug-in, unfortunatly I can't have the systray notification work :sad:

There is no way to have the Systray notification work on procon layer?

 

Quoting MorpheusX(AUT):

When using a hosted Procon, the SysTray-Notifications pop up at your hosts server.

 

Does someone had any luck changing that?

It would be really nice if it could works even with procon layers, blinking (like msn or irc)

Thanks in advance.

Keep on rollin' mate.

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

Originally Posted by MorpheusX(AUT)*:

 

Nope, that won't work on Procon Layers.

Procon can just pop up a notification at the computer the plugin is running at, which is your host's rootserver.

Thus, systray notifications cannot be achieved when connecting to a layer/not running the plugin on your local computer.

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

Originally Posted by MorpheusX(AUT)*:

 

I see thanks for the fast reply

btw it would be nice if it can be added a command that will show also the admins connected by procon (even by layer) not only the admins in game

Sadly, this can't be achieved either because the Plugins don't have access to which admin-accounts are logged in, and which aren't. I've tried a few things, but you cannot monitor that as needed.
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 month later...

Originally Posted by Master_Pain*:

 

Have a question for you Morpheus, have a friend trying to run notifyme, but when the command is said in chat, nothing happens. He has it set up the same way I do, but it doesn't recognize the command in chat and doesn't stream anything in the plugins chatter box. If he monitors chat for keywords, that will recognize keywords in chat, but the actual call an admin ingame command doesn't trigger anything for him. Any ideas?

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

Originally Posted by Sage-BRIG*:

 

Okay, its working fine with the yell enabled, EXCEPT the last page doesnt ever go away.

 

A decent workaround is to yell something else and then when its been up a few seconds it will clear it.

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

Originally Posted by JoycieNL*:

 

Okay, its working fine with the yell enabled, EXCEPT the last page doesnt ever go away.

 

A decent workaround is to yell something else and then when its been up a few seconds it will clear it.

With the last patch they've moved/modified the "Yell" function.

The plugin(code) doesn't match the modified "Yell" (code) anymore or they've made the "Yell" function permanently visible with the last patch.

MorpheusX(AUT) have to update the plugin I guess, hopefully very soon.

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

Originally Posted by EAS-Eastern420*:

 

SINCE I ADDED YOUR app my procon keeps crashing I installed the new 1.2 and still it disappears when i go to restart it it says " procon shutting down" then its starts up and disappear again its in process in the task manger it was working at first I really like it but now it crashing any ideas?

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

Originally Posted by MadDoggyDawg*:

 

Yell-Bug noted and fix already probably found.

Update will have to wait a few more days though, till I'm back at home.

I think I found it to:

 

Must be this:

 

{

this.ExecuteCommand("procon.protected.send", "admin.say", "[Notify Me!] " + message, "player", str);

}

else if (this.strIngameNotification.CompareTo("Yell") == 0)

{

this.ExecuteCommand("procon.protected.send", "admin.yell", "[Notify Me!] " + message, "8000", "player", str);

}

else if (this.strIngameNotification.CompareTo("Both") == 0)

{

this.ExecuteCommand("procon.protected.send", "admin.say", "[Notify Me!] " + message, "player", str);

this.ExecuteCommand("procon.protected.send", "admin.yell", "[Notify Me!] " + message, "8000", "player", str);

}

Not sure though, as I have not tested it. That is probably why it stays so long.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

Yup. This code is for BC2, which used milliseconds as the time for yells. BF3 now uses seconds, making this code-part show the message for 133,3 minutes :biggrin:

Change it with an editor to

Code:

[i]this.ExecuteCommand("procon.protected.send", "admin.yell", "[Notify Me!] " + message, "[/i][b]8[/b]", "player", str);
and that's all the magic.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MorpheusX(AUT)*:

 

I have been told it is possible to change the vehicle spawn delay on certain maps, but I can't work out how. Can someone put me on the right path here please.

This has nothing to do with my plugin. NotifyMe is just for admin-notifications, not server settings.
* Restored post. It could be that the author is no longer active.
Link to comment
  • 2 weeks later...

Originally Posted by Angry_AGAIN*:

 

Hey guys,

We are using notify me for weeks without major problems

 

But since R20_R21? we get this error

 

[00:49:01 48] Notify Me!: Error while sending mails: System.Net.Mail.SmtpException: Failure sending mail. ---> System.FormatException: Smtp server returned an invalid response.

at System.Net.Mail.SmtpReplyReaderFactory.ProcessRead (Byte[] buffer, Int32 offset, Int32 read, Boolean readLine)

at System.Net.Mail.SmtpReplyReaderFactory.ReadLines(S mtpReplyReader caller, Boolean oneLine)

at System.Net.Mail.SmtpReplyReaderFactory.ReadLine(Sm tpReplyReader caller)

at System.Net.Mail.CheckCommand.Send(SmtpConnection conn, String& response)

at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)

at System.Net.Mail.SmtpClient.Send(MailMessage message)

--- End of inner exception stack trace ---

at System.Net.Mail.SmtpClient.Send(MailMessage message)

at PRoConEvents.NotifyMe.EmailWrite(String subject, String body)

 

 

I know its looks more like an error with the SMTP server but our hoster says he didnt change anything.

 

Any Sugesstions?

* 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.