|
Hi.
I'm using unix scoket for data transferring (SOCK_STREAM mode)
I need to send a string of more than 100k chars. Firstly, I send length of a string - it's sizeof(int) bytes.
length = strlen(s) send(sd, length, sizeof(int))
Then I send the whole string...
Started by Nelly on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to pass send() the address of the data, i.e.:
bytesSend = send(sd, &length, sizeof(int))
Also, this runs into some classical risks, with endianness, size of int on various platforms, et ....
Your initial send() call is wrong.
|
|
I have an account on Windows Small Business Server 2003, for which several users have "send as" permission (not "send on behalf" but "send as"). Each of those users has "send as" enabled in active directory, as well as mailbox access enabled in the "exchange...
Started by Travis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
To give you an example of what I mean, I'll borrow your and go to Tools - Options... .
Send before they can send on behalf of the resource.
Of the recipient's object, rather than a failure of send-as permissions on the part of the sender.
|
|
Single Exchange 2007 Server environment. DNS records in place.
I want to change the FQDN exchange gives when it's sending mail from different domains.
For example if a user has two domains he's sending out as, (user@bob.com and user@joe.com), configured...
Started by Malnizzle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If you're....
It could be done by having someone code up a custom Routing Agent for you .
There's no built-in functionality in E2K7 to do what you want, but the pieces are there to put it together with custom code .
You're looking for "sender-based routing".
|
Ask your Facebook Friends
|
Hi,
I'm looking to send a net send type message popup to all users in my network 1 day week every week.
Can I do this via Windows somwhow or would I need a script running somewhere?
Thanks,
Started by thegunner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You place....
Than you simply create a batch file and issue a net send command.
So check that services for the service that controls net send.
First you need to ensure the net send service is allowed to run control panel->services.
|
|
I'm trying to figure out how to use PowerShell V2's Send-MailMessage with gmail.
Here's what I have so far.
$ss = new-object Security.SecureString foreach ($ch in "password".ToCharArray()) { $ss.AppendChar($ch) } $cred = new-object Management.Automation...
Started by Scott Weinstein on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Anyway, here's how to send email through gmail with .NET SmtpClient:
$SmtpClient = new-object PowerShell V2 send-mailmessage, but I have....
I'm not sure you can change port numbers with Send-MailMessage since gmail works on port 587.
|
|
Whenever you select to send a file by email (right click on it and select Send To | Mail recipient) the email is automatically in plain text and additional text is included:
Your message is ready to be sent with the following file or link attachments:...
Started by answertips on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
See "Outlook: Send To Mail message format, click Options on the Tools menu, click Mail Format, and in the Send in this message default message format, you need to create a shortcut....
Although it can be done, it does look a little bit complicated .
|
|
Hi guy i have a program which use to send group emails, i set a cornjob per mins for this program, and set execute per 2nd/min, and check if the now time is match to my defined schedule time in db. if true the program will run and send email, else nth...
Answer Snippets (Read the full thread at stackoverflow):
In PHP Sending mass email using php Best way to send 10,000+ emails with PEAR/Mail_Queue I think, cron job should run every minute but the application itself should know howmany e-mails to send when a cron job runs by checking the....
|
|
I am building a server-client program with c and having some problen wtih sendina a whole file with send() and recv() function. I need to send the whole file with these but all these functions can do is send a string. The main problem is with sending ...
Answer Snippets (Read the full thread at stackoverflow):
Depending on the operating system, and then write(....
You create your buffer, fill it, send the buffer and pass the # of bytes in it to send(), and from there.
send() does not send a string, it sends an array of bytes.
|
|
Hi, we're starting to build a web app. My colleague is developing on linux, and I am running via a WAMP stack running windows xp. We're using Zend.
When we submit a form and send an email using Zend email, the email would send and then I would get a blank...
Started by Dave on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
PHP has it's own error log, when....
Make sure you have this somewhere in your code
ini_set( 'display_errors', 1 ); error_reporting( E_ALL );
And inspect your apache logs for 500 errors as well .
Sounds like you are getting an error, but just not seeing it .
|
|
Mails from my system are being rejected when the receiving server does HELO checking. I believe my system is sending the wrong domain name. I'm running exim4. Googling for anything about exim4 and domains yields a nightmarish list of irrelevant results...
Started by Sean on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
The....
Assuming the error is complaining about the HELO/EHLO data, you want to use the helo_data option on the smtp transport .
For debugging you can use
tcpdump -A port 25
to watch SMTP traffic in ASCII .
The setting you want is called primary_hostname.
|