Best tech for receiving 50000 emails and sending to azure service bus [closed] - email

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for a robust solution that can receive 50000 emails, strip out the attachment, and some metadata and add an item to an azure service bus for processing.
At the moment we are using a temp solution running an outlook email client on an azure VM but we are only processing 100 emails. This is not a future proof solution.

What you're after is some code that does listen for SMTP Traffic on port 25.
There is a great article on doing this with Azure that contains code examples:
http://blog.smarx.com/posts/emailtheinternet-com-sending-and-receiving-email-in-windows-azure
Basically, the idea is that you can spin up loads of recipients to take away the emails to the point where 50 000 emails is just a matter of how many servers you're willing to spin up.
I would even look into the Azure Service Fabric for a scalable application environment (unlike docker who does containerization) to scale in/out the need for email processor:
https://azure.microsoft.com/en-us/documentation/services/service-fabric/

Related

Local network batch [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have been playing around with azure batch for a project at work.
My work has 100-1000s of computers running win10 mostly chewing over Outlook and not much else.
Is there some framework that can leverage 'idle' CPU time in this environment?
Seems a bit of a shame to send tasks to Azure server in US when the 3 or 4 computers around me (in New Zealand) crying for non-fb attention.
I can take downvotes for 'too vague' and 'off topic' - just need a clue where to look.
You will want to investigate machine/CPU time scavenging schedulers such as HTCondor.

anyone ever used this email verification script? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Trumail (https://github.com/trumail/trumail) is a free and open source email validation/verification system. but after installing it (we found an image in docker hub) we couldn't make it work and verify any email. if anyone has ever used it please send me a documentation or a video please .. thank you
https://github.com/trumail/trumail
Don't use it. It's a good way to get your mailserver blacklisted.
It opens a connection to the remote server and starts a delivery attempt to the specified email address.
If you do this with more than a few bad addresses, many servers will blacklist you and if you're unluckily, will report it to one or more blacklist providers as a directory havest attack.

Website or Server down notification tools [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
We've some production and local development servers that we use to host database and web apps for our clients. Some of them are mapped as websites to client's domain (i.e. we've both web apps with url - http://71.22.33.xx/demo/login & http://order.clientweb.com/login)
Recently one of our clients reported that the website is down it returns a
"Service Unavailable" error. Eventually it turned that
the server was not reachable via remote desktop and none of the
websites on that server were responsive! We had to ping the hosting
company to reboot the server after which it was back online.
We can't predict future situations but how to get notified when the website or the server is down? A simple way would be to ping 71.22.33.xx but I believe that's old school. Are there any tools (like this) which would not only monitor or eventually check the availability and most importantly mail the admin when it goes down.
I'm sure I'm not the first one with such requirement :-) Here's a similar post. Some one please help ?
Thank you.
PS: Or do I've to write my own like this.
There are a number of products/services that can notify you if your website is down:
New Relic
Nagios
Montastic
Pingdom
Some provide more features than others so pick the solution most suitable for your needs.

A Clean lightweight Mail Server for Test [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need a Mail Server to test an application that send and receive emails.
So it should:
be lightweight and small in size
be free (like free beer), open source preferred
support Win XP
support SMTP, IMAP (POP3 is optional)
install clean
Plz:
Don't suggest connecting to Gmail, its ports are blocked.
Don't suggest testing frameworks.
How about hMailServer: http://www.hmailserver.com/
It includes SMTP, POP3, IMAP servers
I'm rather fond of Papercut. It only does SMTP, but it can run without administrator privileges.

Programming an IPTV application- Client/Server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am part of a team which has been given a task to deploy an IPTV solution for a company. The system has been architect-ed like this.
There is Video capture card , which receives satellite signals from a satellite receiver. This video capture card is part of a windows 7 machine. The signals need to be trans coded here and passed to a streaming server which will be received by end users.
The end users will be desktop users having a C#.NET application installed to view the channels.
I am confused at the choice of server software as I have multiple choices - Windows Media Server, VideoLan (VLC project), or Flash Media Server, it also supports MPEG-2 HD.
My main aim to be able to stream MPEG-2 channels with HD quality and encrypt the channels at the server end so that the streams can be protected. I know reversing is possible but it wont be easy as for every naive user with wireshark snooping my streams.
If any of you here has ever done such an implementation please do suggest me the best technologies I should go for.
Iam open to C#,C++ and other similar languages. Any help shall be deeply appreciated.
edit: End Users shall be part of Internet and not necessarily a lan, reason for this question is internet doesn't support multicast like Lan, so I need some suggestions.
Guys, We have finally settled to use XMBC , Boxee's code base for our solution.