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
c976a20f
...
c976a20ffee2c31e8db287b01952cb858816edb5
authored
2005-09-29 11:09:22 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_rfc_2047_B_filter): New filter. Alias to base64.
1 parent
4522554a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
mailbox/filter_trans.c
mailbox/filter_trans.c
View file @
c976a20
...
...
@@ -519,6 +519,15 @@ static struct _mu_filter_record _base64_filter =
NULL
};
static
struct
_mu_filter_record
_B_filter
=
{
"B"
,
base64_init
,
NULL
,
NULL
,
NULL
};
/* RFC 2047 "Q" Encoding */
...
...
@@ -611,7 +620,7 @@ Q_printable_char_p (unsigned c)
case
'\t'
:
return
0
;
default
:
return
1
;
return
c
>
32
&&
c
<
127
;
}
}
...
...
@@ -744,7 +753,7 @@ mu_filter_record_t mu_binary_filter = &_binary_filter;
mu_filter_record_t
mu_bit8_filter
=
&
_bit8_filter
;
mu_filter_record_t
mu_bit7_filter
=
&
_bit7_filter
;
mu_filter_record_t
mu_rfc_2047_Q_filter
=
&
_Q_filter
;
mu_filter_record_t
mu_rfc_2047_B_filter
=
&
_B_filter
;
...
...
Please
register
or
sign in
to post a comment