Sendmail & mail.local + MySQL API


 
Thread Tools Search this Thread
Top Forums Programming Sendmail & mail.local + MySQL API
# 1  
Old 11-11-2001
Sendmail & mail.local + MySQL API

I've searched this message board, and the newgroups THOROUGHLY, in search of any information towards implenting the MySQL API with C... I'm a "beginner" to the C language I suppose, and i've made a few functions in C that can be implemented into the source code of Sendmail/mail.local, so that any INCOMING mail will be INSERTED into a MySQL database, I know that the size of the tables can become insane, but i'm not worried about that.. My question now is, can anyone point me into the direction of some documentation or perhaps some insight on WHERE/HOW to place my functions into the source of Sendmail/mail.local and how to add the link to the libraries and such? Any help would be greatly appreciated...

Thanks in advance,

Corey
# 2  
Old 11-11-2001
In the sendmail.cf file there is a configuration area that lets you specify the local mailer. This is the the part of sendmail that does the post processing of the incoming mail. I would recommend you add the functionality there by building your own version of the mailer...... for example....
# 3  
Old 11-13-2001
Sweet!

Ok thanks for the reply, I have edited the sendmail.cf file's "Mlocal" + my mail program... I have my program written in C, and it delivers whatever I tell it to, to the tables within the MySQL database, however, I might be repeating myself, But could you steer me now into the direction of how to just get ALL the data into the C program from the STDIN, then I can move onto the next step... Reason is this, if I do:

scanf("%s %s %s %s",&From,&FromAddress,&To,&ToAddress);

It will only grab the "From:" (&From), "Blah@blah.com" (&FromAddress), "To:" (&To),"Blow@blow.com" (&ToAddress)..

I want to be able to stream EVERYTHING, or atleast when it comes time to get the WHOLE message into the database... Can you tell me what command or function to grab ALL of the STDIN? I tried using "gets(message)", but came up with Segmentation errors, and tried to debug it.. but i'm just coming up with a deadend..

-Corey
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Proxy Server

How to send mail (sendmail) for php mail()?

PHP mail() function doesn't work. Nor does sendmail: loaded system configuration file /etc/msmtprc ignoring user configuration file /home/xi/.msmtprc: No such file or directory falling back to default account using account default from /etc/msmtprc host = xsi port = 25 proxy host = (not... (1 Reply)
Discussion started by: Xcislav
1 Replies

2. SCO

Sendmail delivers mail to local user if it exists instead of passing it to the smart relay

Environment: SCO Unix Openserver 6 Sendmail ver: 8.11.3 I just put this server online replacing it's old counterpart, same OS on new machine. There are many different servers on this domain, windowssrv.thisdomain.com, oldunix.thisdomain.com, and the new newunix.thisdomain.com just to name a... (2 Replies)
Discussion started by: checkpro
2 Replies

3. UNIX for Dummies Questions & Answers

Minimal Mail Server Setup for Local Mail Transfer

I am trying to get stored mail out of an old mail client. I figured that the easiest way to do it is with IMAP by logging in with both clients. I can copy the mail to the server from the old mail client, and back down into the new mail client. Rather than using a real mail account on the... (2 Replies)
Discussion started by: nixie
2 Replies

4. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

5. Programming

Man pages for C API for MySql

Hi, I am on Ubuntu 9.04 tweaking some programs demanding MySql queries. I got the program working by installing following package: sudo apt-get install libmysqlclient-dev and using proper include and library folder However I was unable to access any man pages for these C api's (Strangely... (1 Reply)
Discussion started by: dheerajsuthar
1 Replies

6. Programming

API C MYSQL vs lock table ???

(sorry for my english) Hi, i have an app that uses MYSQL API C.. i trying do a timeout until the table is locked by an other thread , in the docs of Mysql i can see that MYSQL_OPT_READ_TIMEOUT is not implemented for linux ¿?¿?.. any body knows a way to do a timeout until the table is locked by... (0 Replies)
Discussion started by: JEscola
0 Replies

7. Linux

local mail relay problem in Sendmail

I have a linux box. Sendmail is work fine in this box. The only problem I am facing is whenever I send mail using the mail command to the outside world or to root@localhost, I get this error - 127.0.0.1 localhost denied from relaying The command I used to send mail is - Ls -l | mail -s... (0 Replies)
Discussion started by: RajaRC
0 Replies
Login or Register to Ask a Question