Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
461a7383
...
461a7383934004dbed8b66019976dd7027523a41
authored
2002-09-12 09:56:43 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Source for mailutils.scm -- a module interface file for mailutils.
1 parent
011de7c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
0 deletions
libmu_scm/mailutils.scm.in
libmu_scm/mailutils.scm.in
0 → 100644
View file @
461a738
;;;; -*- scheme -*-
;;;; GNU mailutils - a suite of utilities for electronic mail
;;;; Copyright (C) 2002 Free Software Foundation, Inc.
;;;;
;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation; either version 2, or (at your option)
;;;; any later version.
;;;;
;;;; This program is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;;; GNU General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU General Public License
;;;; along with this program; if not, write to the Free Software
;;;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;;;;
changequote
(
[
,
]
)
dnl
(
define-module
(
mailutils
))
(
let
((
lib-path
"LIBDIR/"
))
(
cond
((
or
(
string=?
(
version
)
"1.4"
)
(
string=?
(
version
)
"1.4.1"
))
(
dynamic-link
(
string-append
lib-path
"libmailbox"
))
(
dynamic-call
"mu_scm_init"
(
dynamic-link
(
string-append
lib-path
"libguile-mailutils-v-VERSION"
))))
(
else
(
load-extension
"libguile-mailutils-v-VERSION"
"mu_scm_init"
))))
(
export
mu-package
)
(
export
mu-version
)
(
export
mu-mailer
)
(
export
mu-debug
)
(
export
MU-ATTRIBUTE-ANSWERED
)
(
export
MU-ATTRIBUTE-FLAGGED
)
(
export
MU-ATTRIBUTE-DELETED
)
(
export
MU-ATTRIBUTE-DRAFT
)
(
export
MU-ATTRIBUTE-SEEN
)
(
export
MU-ATTRIBUTE-READ
)
(
export
MU-ATTRIBUTE-MODIFIED
)
(
export
MU-ATTRIBUTE-RECENT
)
(
export
LOG_USER
)
(
export
LOG_DAEMON
)
(
export
LOG_AUTH
)
(
export
LOG_LOCAL0
)
(
export
LOG_LOCAL1
)
(
export
LOG_LOCAL2
)
(
export
LOG_LOCAL3
)
(
export
LOG_LOCAL4
)
(
export
LOG_LOCAL5
)
(
export
LOG_LOCAL6
)
(
export
LOG_LOCAL7
)
(
export
LOG_EMERG
)
(
export
LOG_ALERT
)
(
export
LOG_CRIT
)
(
export
LOG_ERR
)
(
export
LOG_WARNING
)
(
export
LOG_NOTICE
)
(
export
LOG_INFO
)
(
export
LOG_DEBUG
)
(
export
LOG_CONS
)
(
export
LOG_NDELAY
)
(
export
LOG_PID
)
include
(
BUILDDIR/mu_address
.
inc
)
include
(
BUILDDIR/mu_body
.
inc
)
include
(
BUILDDIR/mu_guimb
.
inc
)
include
(
BUILDDIR/mu_mailbox
.
inc
)
include
(
BUILDDIR/mu_message
.
inc
)
include
(
BUILDDIR/mu_mime
.
inc
)
include
(
BUILDDIR/mu_logger
.
inc
)
include
(
BUILDDIR/mu_port
.
inc
)
include
(
BUILDDIR/mu_scm
.
inc
)
include
(
BUILDDIR/mu_util
.
inc
)
Please
register
or
sign in
to post a comment