QMail Help


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers QMail Help
# 1  
Old 02-21-2005
QMail Help

My company is running qmail on our Unix server. I would like to run a MySQL script whenever an email was sent to a specific email address. I don't want to have to check every email that comes in, so I was thinking that the script would run when the message arrives at the specific mailbox. Is there anyway to do this? If so, what is the best way to write the script (i.e., language, from the shell command line, a specific file)? Thanks.
-Cam
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Qmail

hi all, i want to install Qmail but i don't from where can i get the package , and also if one know source that can explain qmail kindly tell me about it (3 Replies)
Discussion started by: linux_land
3 Replies

2. UNIX for Dummies Questions & Answers

qmail bounce

Hello, i seem to be facing a strange problem. I send my emails via qmail (on linux) and all the emails gets delivered to the recipient's inbox and bounces back to the sender's address and well. This happens irrespective of the recipient's email domain (gmail, yahoo, hotmail...). We recently... (0 Replies)
Discussion started by: pradeeptg
0 Replies

3. UNIX and Linux Applications

QMail spam

we had an emergency situation and had to rebuild a qmail server last night. Email now that is designated as spam gets stuck in a loop and we get a ndr. I would like for email not destined for a valid account or classified as spam be deleted rather then forwarded on to our exchange server. ... (1 Reply)
Discussion started by: egrotjahn
1 Replies

4. SuSE

qmail question - about addressbook(All)

I have installed qmail on SuSe linux box with mysql.Qmail is running fine and has no problem.Now I want to develop sonme new features by integrating our ERP with qmail.For that I have to enter more information about employee in Qmail Addressbook.I am attaching screenshot which is describing present... (0 Replies)
Discussion started by: thetakan
0 Replies

5. UNIX and Linux Applications

Qmail and duplicate

hello, I have a qmail server on Freebsd that is sending periodic duplicate emails. I dug around and found out that when connecting to the server through a telnet session everything goes good until i send the DATA command, type a message and enter the "." it takes like 5 minutes to get the 250 ok... (4 Replies)
Discussion started by: mike171562
4 Replies

6. Gentoo

Gentoo and Qmail

Hello all, I want to create a qmail to just forward messages to a valid smtp over the internet, so I can use mutt to send messages as well as recieving them. Is there an easy way of doing this? My SMTP server requires authentication. Thanks a lot. (2 Replies)
Discussion started by: Zarnick
2 Replies

7. Solaris

Qmail - possible?

Hi guys, Could you please advice me as im a new guy into Solaris ...is it possible to have qmail up and running on Solaris 10 and do you know where i can find some documentation on downloading and configuring - qmail? thank you guys vladi, (2 Replies)
Discussion started by: saveka
2 Replies

8. Solaris

Qmail on Solaris 9

I want to configure Qmail on my server (v240/SPARC 1GHz/1GB RAM /2x36GB HDD). Anybody help me where to download, and how to configure Qmail on Sol9. Thanks in advanced, Tinh (1 Reply)
Discussion started by: tinhlx
1 Replies

9. UNIX for Dummies Questions & Answers

Qmail Configuration

hey, plz tell me someone how to configure qmail in redhat linux 9.0. (1 Reply)
Discussion started by: raj_shivage
1 Replies

10. UNIX for Dummies Questions & Answers

QMail

Where I can find information about QMail with OpenBSD??? (1 Reply)
Discussion started by: vieiramail
1 Replies
Login or Register to Ask a Question
GIT-CHECK-MAILMAP(1)						    Git Manual						      GIT-CHECK-MAILMAP(1)

NAME
git-check-mailmap - Show canonical names and email addresses of contacts SYNOPSIS
git check-mailmap [options] <contact>... DESCRIPTION
For each "Name <user@host>" or "<user@host>" from the command-line or standard input (when using --stdin), look up the person's canonical name and email address (see "Mapping Authors" below). If found, print them; otherwise print the input as-is. OPTIONS
--stdin Read contacts, one per line, from the standard input after exhausting contacts provided on the command-line. OUTPUT
For each contact, a single line is output, terminated by a newline. If the name is provided or known to the mailmap, "Name <user@host>" is printed; otherwise only "<user@host>" is printed. MAPPING AUTHORS
If the file .mailmap exists at the toplevel of the repository, or at the location pointed to by the mailmap.file or mailmap.blob configuration options, it is used to map author and committer names and email addresses to canonical real names and email addresses. In the simple form, each line in the file consists of the canonical real name of an author, whitespace, and an email address used in the commit (enclosed by < and >) to map to the name. For example: Proper Name <commit@email.xx> The more complex forms are: <proper@email.xx> <commit@email.xx> which allows mailmap to replace only the email part of a commit, and: Proper Name <proper@email.xx> <commit@email.xx> which allows mailmap to replace both the name and the email of a commit matching the specified commit email address, and: Proper Name <proper@email.xx> Commit Name <commit@email.xx> which allows mailmap to replace both the name and the email of a commit matching both the specified commit name and email address. Example 1: Your history contains commits by two authors, Jane and Joe, whose names appear in the repository under several forms: Joe Developer <joe@example.com> Joe R. Developer <joe@example.com> Jane Doe <jane@example.com> Jane Doe <jane@laptop.(none)> Jane D. <jane@desktop.(none)> Now suppose that Joe wants his middle name initial used, and Jane prefers her family name fully spelled out. A proper .mailmap file would look like: Jane Doe <jane@desktop.(none)> Joe R. Developer <joe@example.com> Note how there is no need for an entry for <jane@laptop.(none)>, because the real name of that author is already correct. Example 2: Your repository contains commits from the following authors: nick1 <bugs@company.xx> nick2 <bugs@company.xx> nick2 <nick2@company.xx> santa <me@company.xx> claus <me@company.xx> CTO <cto@coompany.xx> Then you might want a .mailmap file that looks like: <cto@company.xx> <cto@coompany.xx> Some Dude <some@dude.xx> nick1 <bugs@company.xx> Other Author <other@author.xx> nick2 <bugs@company.xx> Other Author <other@author.xx> <nick2@company.xx> Santa Claus <santa.claus@northpole.xx> <me@company.xx> Use hash # for comments that are either on their own line, or after the email address. GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-CHECK-MAILMAP(1)