sendmail.h revision 058561cbaa119a6f2659bc27ef343e1b47266bb2
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino/*
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino * Copyright (c) 2006 Sendmail, Inc. and its suppliers.
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino * All rights reserved.
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino *
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino * By using this file, you agree to the terms and conditions set
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino * forth in the LICENSE file which can be found at the top level of
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino * the sendmail distribution.
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino */
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino#pragma ident "%Z%%M% %I% %E% SMI"
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino/*
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino** SENDMAIL.H -- MTA-specific definitions for sendmail.
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino*/
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino#ifndef _SM_SENDMAIL_H
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino# define _SM_SENDMAIL_H 1
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino/* "out of band" indicator */
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpino#define METAQUOTE ((unsigned char)0377) /* quotes the next octet */
726fad2a65f16c200a03969c29cb5c86c2d427dbDina K Nimeh
726fad2a65f16c200a03969c29cb5c86c2d427dbDina K Nimehextern int dequote_internal_chars __P((char *, char *, int));
726fad2a65f16c200a03969c29cb5c86c2d427dbDina K Nimehextern char *quote_internal_chars __P((char *, char *, int *));
71269a2275bf5a143dad6461eee2710a344e7261Anthony Scarpinoextern char *str2prt __P((char *));
726fad2a65f16c200a03969c29cb5c86c2d427dbDina K Nimeh
1e49577a7fcde812700ded04431b49d67cc57d6dRod Evans#endif /* ! _SM_SENDMAIL_H */
1e49577a7fcde812700ded04431b49d67cc57d6dRod Evans