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
aaa222bb
...
aaa222bbc4368755bc3e88fee1cf006613f7afe9
authored
2008-03-07 13:14:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix translatable strings.
1 parent
4c557fff
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
9 deletions
ChangeLog
comsat/comsat.c
imap4d/imap4d.c
imap4d/preauth.c
libargp/sieve.c
libcfg/ldap.c
libcfg/sieve.c
ChangeLog
View file @
aaa222b
2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
* comsat/comsat.c, imap4d/imap4d.c, imap4d/preauth.c,
libargp/sieve.c, libcfg/ldap.c, libcfg/sieve.c: Fix translatable
strings.
2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
* configure.ac: Require gettext 0.17
* auth/ldap.c, auth/radius.c, libargp/tls.c, mailbox/cfg_lexer.c,
pop3d/logindelay.c: Fix diagnostic messages.
...
...
comsat/comsat.c
View file @
aaa222b
...
...
@@ -126,8 +126,7 @@ struct mu_cfg_param comsat_cfg_param[] = {
{
"max-lines"
,
mu_cfg_int
,
&
maxlines
,
0
,
NULL
,
N_
(
"Maximum number of message body lines to be output."
)
},
{
"max-requests"
,
mu_cfg_uint
,
&
maxrequests
,
0
,
NULL
,
N_
(
"Maximum number of incoming requests per `request-control-interval' "
"seconds."
)
},
N_
(
"Maximum number of incoming requests per request control interval."
)
},
{
"request-control-interval"
,
mu_cfg_time
,
&
request_control_interval
,
0
,
NULL
,
N_
(
"Set control interval."
)
},
...
...
imap4d/imap4d.c
View file @
aaa222b
...
...
@@ -308,7 +308,7 @@ static struct mu_cfg_param imap4d_cfg_param[] = {
" prog:///<full-program-name: string>
\n
"
" ident[://:<port: string-or-number>]
\n
"
" stdio"
),
N_
(
"
MODE
"
)
},
N_
(
"
mode
"
)
},
{
"preauth-only"
,
mu_cfg_bool
,
&
preauth_only
,
0
,
NULL
,
N_
(
"Use only preauth mode. If unable to setup it, disconnect "
"immediately."
)
},
...
...
imap4d/preauth.c
View file @
aaa222b
...
...
@@ -341,7 +341,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa)
if
(
srv_sa
->
sa_family
!=
AF_INET
)
{
mu_diag_output
(
MU_DIAG_ERROR
,
_
(
"Invalid
socket family (%d)
IDENT preauth"
),
_
(
"Invalid
address family (%d) for
IDENT preauth"
),
srv_sa
->
sa_family
);
return
NULL
;
}
...
...
@@ -394,7 +394,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa)
if
(
!
ident_keyfile
)
{
mu_diag_output
(
MU_DIAG_ERROR
,
_
(
"Key
d
ile not specified in config; "
_
(
"Key
f
ile not specified in config; "
"use `ident-keyfile FILE'"
));
name
=
NULL
;
}
...
...
libargp/sieve.c
View file @
aaa222b
...
...
@@ -36,7 +36,7 @@ static struct argp_option sieve_argp_option[] = {
{
"clear-include-path"
,
OPT_CLEAR_INCLUDE_PATH
,
NULL
,
0
,
N_
(
"Clear Sieve include path"
),
0
},
{
"clear-library-path"
,
OPT_CLEAR_LIBRARY_PATH
,
NULL
,
0
,
N_
(
"Clear Sieve l
o
brary path"
),
0
},
N_
(
"Clear Sieve l
i
brary path"
),
0
},
{
"clearpath"
,
0
,
NULL
,
OPTION_ALIAS
,
NULL
},
{
NULL
,
0
,
NULL
,
0
,
NULL
,
0
}
};
...
...
libcfg/ldap.c
View file @
aaa222b
...
...
@@ -61,7 +61,7 @@ static struct mu_cfg_param mu_ldap_param[] = {
" <name: string>=<attr: string>
\n
"
"where <name> is one of the following: name, passwd, uid, gid, "
"gecos, dir, shell, mailbox, quota, and <attr> is the name of "
"the correspondin
d
LDAP attribute."
),
"the correspondin
g
LDAP attribute."
),
N_
(
"map"
)
},
{
"getpwnam"
,
mu_cfg_string
,
&
ldap_settings
.
getpwnam_filter
,
0
,
NULL
,
N_
(
"LDAP filter to use for getpwnam requests."
),
...
...
libcfg/sieve.c
View file @
aaa222b
...
...
@@ -98,11 +98,11 @@ static struct mu_cfg_param mu_sieve_param[] = {
N_
(
"Clear include search path."
)
},
{
"library-path"
,
mu_cfg_callback
,
NULL
,
0
,
cb_library_path
,
N_
(
"Add directories to the library search path. Argument is a "
"co
mma
-separated list of directories."
),
"co
lon
-separated list of directories."
),
N_
(
"list"
)
},
{
"include-path"
,
mu_cfg_callback
,
NULL
,
0
,
cb_include_path
,
N_
(
"Add directories to the include search path. Argument is a "
"co
mma
-separated list of directories."
),
"co
lon
-separated list of directories."
),
N_
(
"list"
)
},
{
NULL
}
};
...
...
Please
register
or
sign in
to post a comment