~ubuntu-branches/ubuntu/lucid/logrotate/lucid-security

« back to all changes in this revision

Viewing changes to config.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Martin
  • Date: 2005-09-03 13:37:53 UTC
  • mto: (3.1.1 dapper) (4.3.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050903133753-0q08foy1sgtzc8op
Tags: upstream-3.7.1
ImportĀ upstreamĀ versionĀ 3.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 */
4
4
 
5
5
#ifdef __hpux
6
 
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx -s"
 
6
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx"
7
7
    #define COMPRESS_COMMAND "/usr/contrib/bin/gzip"
8
8
    #define UNCOMPRESS_COMMAND " /usr/contrib/bin/gunzip"
9
9
    #define STATEFILE "/var/run/logrotate.status"
10
10
#endif
11
11
 
12
12
#ifdef SunOS
13
 
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx -s"
 
13
    #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx"
14
14
    #define COMPRESS_COMMAND "/usr/local/bin/gzip"
15
15
    #define UNCOMPRESS_COMMAND "/usr/local/bin/gunzip"
16
16
    #define STATEFILE "/var/log/logrotate.status"
20
20
 * Default settings for Linux - leave these last.
21
21
 */
22
22
#ifndef DEFAULT_MAIL_COMMAND
23
 
    #define DEFAULT_MAIL_COMMAND "/bin/mail -s"
 
23
    #define DEFAULT_MAIL_COMMAND "/bin/mail"
24
24
#endif
25
25
 
26
26
#ifndef COMPRESS_COMMAND