Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am using the Postfix MTA with a virtual configuration from MySQL for the Users and Forwardings.
Now I want some Adresses (that are dynamicaly generated, for writing via E-Mail to a Forum) to be forwarded to a php-script.
I already have tried to put the script quoted and piped as destination bit it doesn't work.
"|php -q /path/to/script.php"
But if I send a mail to that domain it says:
User “|php -q /path/to/script.php"#mydomain.tld not found
Related
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
My php on linux server is too slow, but faster on my 127.0.0.1 (windows local host). any ideas to improve speed on linux server?
I'm doing file reading, file writing processes in my php code.
it isn't too slow use 127.0.0.1 instead Localhost
its because when we use hostname (like localhost ) the mysql client first tries this with ipv6 host name and if it failed than it fallback with ipv4
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I just bought a domain with some space, but my provider not supporting nodejs.
I searched a lot, how could I build it on the server, but of course, to make, I need so privileges, so now I'm stuck here.
How could I use nodejs (or other server side Javascript engine) to run javascript?
I have FTP access to the server, but nothing more.
I believe you just can't.
If your provider doesn't give privileges to do it you are stuck :(
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Is there any way to send an iMessage from a Linux server to an iPhone?
Obviously... with most traditional SMS plans, you can always send a message to something like 2125551212#txt.att.net and receive it on the phone.
Does an equivalent exist for iMessage?
No, iMessage doesn't work like traditional SMS.
There's no public API available for the protocol, either.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I don't know the name of this part of the domain name: mail.google.com
How do I implement something like that in my web application?
Please show me some tutorial for this. thank you
You do not do this from within your web application. You need to setup an A record for your subdomain name. This is done using the control panel for your DNS server or editing the config files for BIND if you are running your own DNS server.
This simple guide explains the different types of DNS records.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I need to backup automatically daily my database in mysql and all image files on the server.
Is there a way to backup these things and send it on my email address ?
You can write a bash script that contains gzip, mysqldump and mail commands and have it run daily via cron job.