|
I'm looking at building a simple app based around location. Obviously given that lots of people don't have access to smartphones etc, I'm trying to figure out a way to allow them to text in their address/location details to an automated system that will...
Started by eamonncarey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To receive incoming SMSes=ISO-8859-1& moMsgId=b2aee337abd962489b123fda9c3480fa
As soon as you receive the address within the SMS.
Unlike search, mapping is not a one horse race...
API or Bing Maps API.
|
|
How do I calculate network utilization for both transmit and receive either using C or a shell script?
My system is an embedded linux. My current method is to recorded bytes received (b1), wait 1 second, then recorded again (b2). Then knowing the link...
Started by Andrew on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It tries to query the /proc file system, if available, and uses getifaddrs for systems.
Called vnstat.
|
|
Linux netstat shows send and receive queue sizes.
How do I get this info under Windows, specifically Server 2003?
Started by Brien on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I guess some kernel driver could help drilling down into the system.
SO_SNDBUF The total per-socket buffer space reserved for sends a mean to get the values easily.. .
Of the TCP receive window.
|
Ask your Facebook Friends
|
Hi,
I have a basic Drupal install and a bunch of users.
How could my Drupal users receive e-mails from the outside world at their address (e.g. user@my-drupal-install.com)?
Thank you!
Started by David on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Once you have a mail.
If there is no mail server present on your system, you will need to install one.
SMTP = smtp.maildomain.com
Drupal is a system for serving web pages, it does not run mail servers.
|
|
I created a new user for MS Exchange.
I can send and receive email from other members of the companies server domain.
I can send outbound email to anywhere outside the company without a problem.
However I can’t receive email from a outside the local AD...
Started by Greg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Next step: tracking.
Users:
If you go the SMTP Virtual Server Properties though the 'Exchange System Manager to tell Postini about the new mailbox before they will be able to receive mail.
|
|
I want to receive a notification in my C++ application when a screensaver is about to start. I tried listening to WM_SYSCOMMAND messages with wParam == SC_SCREENSAVE which some people think should do the trick:
http://bytes.com/topic/visual-basic-net/...
Started by MMx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It appears that I will receive the SC_SCREENSAVE message only when my function in a separate DLL and there....
Other tests rely on a screensaver program running (check the currently set need a different solution .
Not receive such messages.
|
|
Hi, this is my first posting on stackoverflow, so don't flame me too much ;)
I'm building a service that's monitoring devices and should be able to receive emails from users, parse them and take action accordingly. It should also be able to send emails...
Started by Jean Azzopardi on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Preferrably use all-in-one compoment instead of system.
I did some similar system already :) All you need is a POP3 reader component for mail grabbing, and SMTP component for sending them out.
I used it.
|
|
I know I can receive messages with the code below in c#, how do I send to vb6, and receive in vb6, and send from vb6?
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] protected override...
Started by mikeh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your snippet looks to be correct property of the window in VB6 that should receive....
To receive in VB6 you the HWND of the C# window that is to receive the message.
To send in VB6 you need to use an API call ( SendMessage or PostMessage) .
|
|
How can I setup Postfix so that it will only receive emails from specific domains?
There's a specific email account on my server that I would only like to be able to receive emails relayed from txt.att.net, text.wireless.alltel.com, and mms.alltel.net...
Answer Snippets (Read the full thread at serverfault):
To specific users on your system, it allows them to relay mail to any user on any system through yours.
|
|
I need to be able to send and receive UDP packets on the same port. I am able to listen, on say port 5000, but my send uses a random high port. The system I am working written in VB with does this and my need is to write a UDP responder for debugging ...
Started by cedgriss on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use....
System [B] asynchronously responds and send datagram(s) back to [A] all using pair).
System [A] sends datagram to System [B].
System consists of a number of nodes listening on same port (different ip addr's).
|