How can I send email to a virtual domain in other server [closed] - email

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 am setting up 2 servers.
1. monitoring server
2. mailing list server
These two servers work together when monitoring server(1) send any alert mail to mailing list server(2).
After the mailing list server(2) receives the alert,
The mailing list server(2) will spread out emails to email address in the mailing list database.
The problem is:
The mailing list server uses virtual domain.
Like fakedomain.com
How can I setup Alias in the monitoring server, so that the monitoring server(1) would send directly to fakedomain.com in mailing list server(2)?
not to fakedomain.com on the internet.
Thank You in advance

You can use your /etc/hosts file on your monitoring server to point to your local mail server to bounce messages further to recipients from the database.
/etc/hosts:
10.1.1.14 mail.fakedomain.com

Related

how do I know if my webserver becomes listed as a spamserver [closed]

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'm working on a app which sends notifications emails. I know this is stereotypical for spam servers. I know the first question ist "How can I ensure what my server will not be listed as a spam server?" However I believe I should monitor my mailserver to ensure what every customer becomes his mails.
So the question: How can I check/monitor whether my server is listed as a spam server?
I really appreciate your help.
MXtoolbox (disclosure: I hold no relation to this site) has a great blacklist checking tool that checks all the major blacklists.
As for staying off them, make sure all your e-mails are opt-in and have an unsubscribe link within the e-mail body of every notification sent. Keep a record of all clients opting in, some hosting companies will charge you a small fortune if you get their IPs blacklisted.

Support multiple login at the same time in OpenFire server [closed]

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've configured OpenFire for using as server for my customers.
But in following case, OpenFire doesn't give proper response:
Customer A login from two chat client connected to my server and chat with another Customer B.
The problem is that, last active Customer A can only get Message from Customer B instead of getting message in both the chat client.
Anyone have configured the OpenFire can suggest me the settings need to be changed.
Thanks.
This is by design of XMPP, as can be seen in RFC3921, section 11.1 "Inbound Stanzas".
To send messages addressed to a bare JID in openfire to all related full JIDs (resources + bare JID), you need to set the system property route.all-resources with the value true in Openfire (Admin Console > Server Manager > System Properties). You will have to create this system property. Also you would have to set the same priority in both clients.
See also these igniterealtime forums posts.

Which MX server should I enter for my Mail to go to the mail hosting company [closed]

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 11 years ago.
Improve this question
I am going to set up my application on HEROKU which does not offer mail services.
The company I am doing this for has a mail service company. The previous web host changed the MX record on their servers to point to this company.
My Domain Name Provider is Network Solutions. Do I set up the MX records on Network Solutions to point to the Mail service company even if the domain points to the DNS on HEROKU?
I am a NOOB and don't want to mess up the companies email. Any help would be appreciated.
Yes, you should point the MX record to the mail service company. You should also investigate how to setup a PTR record for your mx host that maps the IP back to your hostname. You may need to have the mail service provider do this for you. This PTR record helps in getting your domain's email through other mail servers' SPAM filter.

Gmail MX record Dual Nature [closed]

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 11 years ago.
Improve this question
I have set my MX record with Google
Mail, but google only provide 50 email
address for free is there any
possibility to create 50 email with
google and more with my own Web
hosting provider email server?
Unfortunately not. There's no way for MX records for a domain to distinguish between different addresses. However, if it's possible to create subdomain email addresses, you might be able to get away with creating a catch-all address in Google Apps and then setting filters to forward mail appropriately.
However, I think your best solution would really be to start paying for Google Apps if you're using it so extensively. Definitely worth it.

Dynamic MX Records [closed]

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 7 years ago.
Improve this question
I'm trying to figure out a solution to my problem which is as follows: There are two email addresses on my domain that I want to continue hosting at a provider but for all the other email addresses I want to host them on my own servers. Logically, I configure the MX records for pointing to the provider of my email hosting but in this case its like I want to maintain the current MX records for these two email addresses and then configure a new one for all others. Is there a way to do something like "check the destination email addresses and if its one of the following then reroute this mail to this mx record" or am I out of luck? I would imagine this problem has been addressed before.
I'm pretty sure this won't work via the MX records because the lookup is of the domain not the whole email address. You could however setup the new server to forward those accounts to a different email address.
Alternatively depending on your server make it act as a proxy for the old addresses, set a rule to open a new connection to the other server and deliver as if nothing has changed?