tnef 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/tnef/ChangeLog +18 -0
- data/ext/tnef/Makefile.in +185 -132
- data/ext/tnef/NEWS +4 -1
- data/ext/tnef/aclocal.m4 +440 -266
- data/ext/tnef/autom4te.cache/output.0 +7001 -0
- data/ext/tnef/autom4te.cache/output.1 +7001 -0
- data/ext/tnef/autom4te.cache/requests +159 -0
- data/ext/tnef/autom4te.cache/traces.0 +545 -0
- data/ext/tnef/autom4te.cache/traces.1 +1036 -0
- data/ext/tnef/compile +347 -0
- data/ext/tnef/config.log +971 -0
- data/ext/tnef/configure +380 -194
- data/ext/tnef/configure.in +1 -1
- data/ext/tnef/contrib/evolution.helper +43 -0
- data/ext/tnef/contrib/evolution.helper.README +11 -0
- data/ext/tnef/contrib/tnef-alpine.perl +91 -0
- data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
- data/ext/tnef/doc/Makefile +659 -0
- data/ext/tnef/doc/Makefile.in +171 -135
- data/ext/tnef/doc/tnef.1 +185 -0
- data/ext/tnef/doc/tnef.1.in +34 -32
- data/ext/tnef/doc/www/Makefile +585 -0
- data/ext/tnef/doc/www/Makefile.in +158 -115
- data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
- data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/Makefile +405 -0
- data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/index.html +51 -0
- data/ext/tnef/doc/www/htdocs/style.css +13 -0
- data/ext/tnef/src/Makefile.in +193 -135
- data/ext/tnef/src/replace/Makefile.in +148 -55
- data/ext/tnef/src/tnef.c +10 -8
- data/ext/tnef/test-driver +127 -0
- data/ext/tnef/tests/Makefile.in +158 -115
- data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
- data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
- data/ext/tnef/tests/cmdline/Makefile.in +441 -110
- data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/body.baseline +2 -2
- data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
- data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/version.baseline +2 -2
- data/ext/tnef/tests/files/Makefile.in +515 -205
- data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
- data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
- data/lib/tnef/version.rb +1 -1
- metadata +34 -18
data/ext/tnef/doc/Makefile.in
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.14 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
6
|
-
# Foundation, Inc.
|
4
|
+
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
5
|
+
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -15,6 +14,51 @@
|
|
15
14
|
|
16
15
|
@SET_MAKE@
|
17
16
|
VPATH = @srcdir@
|
17
|
+
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
18
|
+
am__make_running_with_option = \
|
19
|
+
case $${target_option-} in \
|
20
|
+
?) ;; \
|
21
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
22
|
+
"target option '$${target_option-}' specified" >&2; \
|
23
|
+
exit 1;; \
|
24
|
+
esac; \
|
25
|
+
has_opt=no; \
|
26
|
+
sane_makeflags=$$MAKEFLAGS; \
|
27
|
+
if $(am__is_gnu_make); then \
|
28
|
+
sane_makeflags=$$MFLAGS; \
|
29
|
+
else \
|
30
|
+
case $$MAKEFLAGS in \
|
31
|
+
*\\[\ \ ]*) \
|
32
|
+
bs=\\; \
|
33
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
34
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
35
|
+
esac; \
|
36
|
+
fi; \
|
37
|
+
skip_next=no; \
|
38
|
+
strip_trailopt () \
|
39
|
+
{ \
|
40
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
41
|
+
}; \
|
42
|
+
for flg in $$sane_makeflags; do \
|
43
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
44
|
+
case $$flg in \
|
45
|
+
*=*|--*) continue;; \
|
46
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
47
|
+
-*I?*) strip_trailopt 'I';; \
|
48
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
49
|
+
-*O?*) strip_trailopt 'O';; \
|
50
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
51
|
+
-*l?*) strip_trailopt 'l';; \
|
52
|
+
-[dEDm]) skip_next=yes;; \
|
53
|
+
-[JT]) skip_next=yes;; \
|
54
|
+
esac; \
|
55
|
+
case $$flg in \
|
56
|
+
*$$target_option*) has_opt=yes; break;; \
|
57
|
+
esac; \
|
58
|
+
done; \
|
59
|
+
test $$has_opt = yes
|
60
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
61
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
18
62
|
pkgdatadir = $(datadir)/@PACKAGE@
|
19
63
|
pkgincludedir = $(includedir)/@PACKAGE@
|
20
64
|
pkglibdir = $(libdir)/@PACKAGE@
|
@@ -32,8 +76,8 @@ NORMAL_UNINSTALL = :
|
|
32
76
|
PRE_UNINSTALL = :
|
33
77
|
POST_UNINSTALL = :
|
34
78
|
subdir = doc
|
35
|
-
DIST_COMMON = $(srcdir)/Makefile.
|
36
|
-
$(srcdir)/tnef.1.in
|
79
|
+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
80
|
+
$(top_srcdir)/mkinstalldirs $(srcdir)/tnef.1.in
|
37
81
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
38
82
|
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
39
83
|
$(top_srcdir)/configure.in
|
@@ -43,15 +87,33 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
43
87
|
CONFIG_HEADER = $(top_builddir)/src/config.h
|
44
88
|
CONFIG_CLEAN_FILES = tnef.1
|
45
89
|
CONFIG_CLEAN_VPATH_FILES =
|
90
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
91
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
92
|
+
am__v_P_0 = false
|
93
|
+
am__v_P_1 = :
|
94
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
95
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
96
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
97
|
+
am__v_GEN_1 =
|
98
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
99
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
100
|
+
am__v_at_0 = @
|
101
|
+
am__v_at_1 =
|
46
102
|
SOURCES =
|
47
103
|
DIST_SOURCES =
|
48
|
-
RECURSIVE_TARGETS = all-recursive check-recursive
|
49
|
-
|
50
|
-
install-
|
51
|
-
install-
|
52
|
-
install-
|
53
|
-
|
54
|
-
|
104
|
+
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
105
|
+
ctags-recursive dvi-recursive html-recursive info-recursive \
|
106
|
+
install-data-recursive install-dvi-recursive \
|
107
|
+
install-exec-recursive install-html-recursive \
|
108
|
+
install-info-recursive install-pdf-recursive \
|
109
|
+
install-ps-recursive install-recursive installcheck-recursive \
|
110
|
+
installdirs-recursive pdf-recursive ps-recursive \
|
111
|
+
tags-recursive uninstall-recursive
|
112
|
+
am__can_run_installinfo = \
|
113
|
+
case $$AM_UPDATE_INFO_DIR in \
|
114
|
+
n|no|NO) false;; \
|
115
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
116
|
+
esac
|
55
117
|
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
56
118
|
am__vpath_adj = case $$p in \
|
57
119
|
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
@@ -85,9 +147,29 @@ NROFF = nroff
|
|
85
147
|
MANS = $(man_MANS)
|
86
148
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
87
149
|
distclean-recursive maintainer-clean-recursive
|
88
|
-
|
89
|
-
|
150
|
+
am__recursive_targets = \
|
151
|
+
$(RECURSIVE_TARGETS) \
|
152
|
+
$(RECURSIVE_CLEAN_TARGETS) \
|
153
|
+
$(am__extra_recursive_targets)
|
154
|
+
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
90
155
|
distdir
|
156
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
157
|
+
# Read a list of newline-separated strings from the standard input,
|
158
|
+
# and print each of them once, without duplicates. Input order is
|
159
|
+
# *not* preserved.
|
160
|
+
am__uniquify_input = $(AWK) '\
|
161
|
+
BEGIN { nonempty = 0; } \
|
162
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
163
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
164
|
+
'
|
165
|
+
# Make sure the list of sources is unique. This is necessary because,
|
166
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
167
|
+
# for different programs/libraries.
|
168
|
+
am__define_uniq_tagged_files = \
|
169
|
+
list='$(am__tagged_files)'; \
|
170
|
+
unique=`for i in $$list; do \
|
171
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
172
|
+
done | $(am__uniquify_input)`
|
91
173
|
ETAGS = etags
|
92
174
|
CTAGS = ctags
|
93
175
|
DIST_SUBDIRS = $(SUBDIRS)
|
@@ -119,6 +201,7 @@ am__relativize = \
|
|
119
201
|
reldir="$$dir2"
|
120
202
|
ACLOCAL = @ACLOCAL@
|
121
203
|
AMTAR = @AMTAR@
|
204
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
122
205
|
AUTOCONF = @AUTOCONF@
|
123
206
|
AUTOHEADER = @AUTOHEADER@
|
124
207
|
AUTOMAKE = @AUTOMAKE@
|
@@ -250,11 +333,18 @@ tnef.1: $(top_builddir)/config.status $(srcdir)/tnef.1.in
|
|
250
333
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
251
334
|
install-man1: $(man_MANS)
|
252
335
|
@$(NORMAL_INSTALL)
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
336
|
+
@list1=''; \
|
337
|
+
list2='$(man_MANS)'; \
|
338
|
+
test -n "$(man1dir)" \
|
339
|
+
&& test -n "`echo $$list1$$list2`" \
|
340
|
+
|| exit 0; \
|
341
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
|
342
|
+
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
|
343
|
+
{ for i in $$list1; do echo "$$i"; done; \
|
344
|
+
if test -n "$$list2"; then \
|
345
|
+
for i in $$list2; do echo "$$i"; done \
|
346
|
+
| sed -n '/\.1[a-z]*$$/p'; \
|
347
|
+
fi; \
|
258
348
|
} | while read p; do \
|
259
349
|
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
260
350
|
echo "$$d$$p"; echo "$$p"; \
|
@@ -286,22 +376,25 @@ uninstall-man1:
|
|
286
376
|
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
|
287
377
|
|
288
378
|
# This directory's subdirectories are mostly independent; you can cd
|
289
|
-
# into them and run
|
290
|
-
# To change the values of
|
291
|
-
# (1) if the variable is set in
|
292
|
-
# (which will cause the Makefiles to be regenerated when you run
|
293
|
-
# (2) otherwise, pass the desired values on the
|
294
|
-
$(
|
295
|
-
@fail
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
done; \
|
379
|
+
# into them and run 'make' without going through this Makefile.
|
380
|
+
# To change the values of 'make' variables: instead of editing Makefiles,
|
381
|
+
# (1) if the variable is set in 'config.status', edit 'config.status'
|
382
|
+
# (which will cause the Makefiles to be regenerated when you run 'make');
|
383
|
+
# (2) otherwise, pass the desired values on the 'make' command line.
|
384
|
+
$(am__recursive_targets):
|
385
|
+
@fail=; \
|
386
|
+
if $(am__make_keepgoing); then \
|
387
|
+
failcom='fail=yes'; \
|
388
|
+
else \
|
389
|
+
failcom='exit 1'; \
|
390
|
+
fi; \
|
302
391
|
dot_seen=no; \
|
303
392
|
target=`echo $@ | sed s/-recursive//`; \
|
304
|
-
|
393
|
+
case "$@" in \
|
394
|
+
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
395
|
+
*) list='$(SUBDIRS)' ;; \
|
396
|
+
esac; \
|
397
|
+
for subdir in $$list; do \
|
305
398
|
echo "Making $$target in $$subdir"; \
|
306
399
|
if test "$$subdir" = "."; then \
|
307
400
|
dot_seen=yes; \
|
@@ -316,57 +409,12 @@ $(RECURSIVE_TARGETS):
|
|
316
409
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
317
410
|
fi; test -z "$$fail"
|
318
411
|
|
319
|
-
$(
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
*=* | --[!k]*);; \
|
324
|
-
*k*) failcom='fail=yes';; \
|
325
|
-
esac; \
|
326
|
-
done; \
|
327
|
-
dot_seen=no; \
|
328
|
-
case "$@" in \
|
329
|
-
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
330
|
-
*) list='$(SUBDIRS)' ;; \
|
331
|
-
esac; \
|
332
|
-
rev=''; for subdir in $$list; do \
|
333
|
-
if test "$$subdir" = "."; then :; else \
|
334
|
-
rev="$$subdir $$rev"; \
|
335
|
-
fi; \
|
336
|
-
done; \
|
337
|
-
rev="$$rev ."; \
|
338
|
-
target=`echo $@ | sed s/-recursive//`; \
|
339
|
-
for subdir in $$rev; do \
|
340
|
-
echo "Making $$target in $$subdir"; \
|
341
|
-
if test "$$subdir" = "."; then \
|
342
|
-
local_target="$$target-am"; \
|
343
|
-
else \
|
344
|
-
local_target="$$target"; \
|
345
|
-
fi; \
|
346
|
-
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
347
|
-
|| eval $$failcom; \
|
348
|
-
done && test -z "$$fail"
|
349
|
-
tags-recursive:
|
350
|
-
list='$(SUBDIRS)'; for subdir in $$list; do \
|
351
|
-
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
352
|
-
done
|
353
|
-
ctags-recursive:
|
354
|
-
list='$(SUBDIRS)'; for subdir in $$list; do \
|
355
|
-
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
356
|
-
done
|
412
|
+
ID: $(am__tagged_files)
|
413
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
414
|
+
tags: tags-recursive
|
415
|
+
TAGS: tags
|
357
416
|
|
358
|
-
|
359
|
-
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
360
|
-
unique=`for i in $$list; do \
|
361
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
362
|
-
done | \
|
363
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
364
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
365
|
-
mkid -fID $$unique
|
366
|
-
tags: TAGS
|
367
|
-
|
368
|
-
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
369
|
-
$(TAGS_FILES) $(LISP)
|
417
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
370
418
|
set x; \
|
371
419
|
here=`pwd`; \
|
372
420
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
@@ -382,12 +430,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
382
430
|
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
383
431
|
fi; \
|
384
432
|
done; \
|
385
|
-
|
386
|
-
unique=`for i in $$list; do \
|
387
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
388
|
-
done | \
|
389
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
390
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
433
|
+
$(am__define_uniq_tagged_files); \
|
391
434
|
shift; \
|
392
435
|
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
393
436
|
test -n "$$unique" || unique=$$empty_fix; \
|
@@ -399,15 +442,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
399
442
|
$$unique; \
|
400
443
|
fi; \
|
401
444
|
fi
|
402
|
-
ctags:
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
408
|
-
done | \
|
409
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
410
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
445
|
+
ctags: ctags-recursive
|
446
|
+
|
447
|
+
CTAGS: ctags
|
448
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
449
|
+
$(am__define_uniq_tagged_files); \
|
411
450
|
test -z "$(CTAGS_ARGS)$$unique" \
|
412
451
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
413
452
|
$$unique
|
@@ -416,24 +455,26 @@ GTAGS:
|
|
416
455
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
417
456
|
&& $(am__cd) $(top_srcdir) \
|
418
457
|
&& gtags -i $(GTAGS_ARGS) "$$here"
|
458
|
+
cscopelist: cscopelist-recursive
|
459
|
+
|
460
|
+
cscopelist-am: $(am__tagged_files)
|
461
|
+
list='$(am__tagged_files)'; \
|
462
|
+
case "$(srcdir)" in \
|
463
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
464
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
465
|
+
esac; \
|
466
|
+
for i in $$list; do \
|
467
|
+
if test -f "$$i"; then \
|
468
|
+
echo "$(subdir)/$$i"; \
|
469
|
+
else \
|
470
|
+
echo "$$sdir/$$i"; \
|
471
|
+
fi; \
|
472
|
+
done >> $(top_builddir)/cscope.files
|
419
473
|
|
420
474
|
distclean-tags:
|
421
475
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
422
476
|
|
423
477
|
distdir: $(DISTFILES)
|
424
|
-
@list='$(MANS)'; if test -n "$$list"; then \
|
425
|
-
list=`for p in $$list; do \
|
426
|
-
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
427
|
-
if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
|
428
|
-
if test -n "$$list" && \
|
429
|
-
grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
|
430
|
-
echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
|
431
|
-
grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
|
432
|
-
echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
|
433
|
-
echo " typically \`make maintainer-clean' will remove them" >&2; \
|
434
|
-
exit 1; \
|
435
|
-
else :; fi; \
|
436
|
-
else :; fi
|
437
478
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
438
479
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
439
480
|
list='$(DISTFILES)'; \
|
@@ -465,13 +506,10 @@ distdir: $(DISTFILES)
|
|
465
506
|
done
|
466
507
|
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
467
508
|
if test "$$subdir" = .; then :; else \
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
done
|
473
|
-
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
474
|
-
if test "$$subdir" = .; then :; else \
|
509
|
+
$(am__make_dryrun) \
|
510
|
+
|| test -d "$(distdir)/$$subdir" \
|
511
|
+
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
512
|
+
|| exit 1; \
|
475
513
|
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
476
514
|
$(am__relativize); \
|
477
515
|
new_distdir=$$reldir; \
|
@@ -597,22 +635,20 @@ uninstall-am: uninstall-man
|
|
597
635
|
|
598
636
|
uninstall-man: uninstall-man1
|
599
637
|
|
600
|
-
.MAKE: $(
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
install-am install-
|
608
|
-
install-
|
609
|
-
install-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
|
615
|
-
uninstall-man uninstall-man1
|
638
|
+
.MAKE: $(am__recursive_targets) install-am install-strip
|
639
|
+
|
640
|
+
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
641
|
+
check-am clean clean-generic cscopelist-am ctags ctags-am \
|
642
|
+
distclean distclean-generic distclean-tags distdir dvi dvi-am \
|
643
|
+
html html-am info info-am install install-am install-data \
|
644
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
645
|
+
install-exec-am install-html install-html-am install-info \
|
646
|
+
install-info-am install-man install-man1 install-pdf \
|
647
|
+
install-pdf-am install-ps install-ps-am install-strip \
|
648
|
+
installcheck installcheck-am installdirs installdirs-am \
|
649
|
+
maintainer-clean maintainer-clean-generic mostlyclean \
|
650
|
+
mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
|
651
|
+
uninstall-am uninstall-man uninstall-man1
|
616
652
|
|
617
653
|
|
618
654
|
web-build web-test web-push:
|
data/ext/tnef/doc/tnef.1
ADDED
@@ -0,0 +1,185 @@
|
|
1
|
+
.\" -*- nroff -*-
|
2
|
+
.TH TNEF 1
|
3
|
+
.SH NAME
|
4
|
+
.nf \" fill off
|
5
|
+
tnef \- decode Microsoft's Transport Neutral Encapsulation Format
|
6
|
+
.fi \" fill on
|
7
|
+
.SH SYNOPSIS
|
8
|
+
.BR tnef " [options] [FILE]"
|
9
|
+
.PP
|
10
|
+
.B tnef
|
11
|
+
{\fB\-\-help\fP | \fB\-\-version\fP}
|
12
|
+
.SH DESCRIPTION
|
13
|
+
This manual page documents the
|
14
|
+
.B tnef
|
15
|
+
filter.
|
16
|
+
.B tnef
|
17
|
+
decodes e-mail attachments encoded in Microsoft's Transport Neutral
|
18
|
+
Encapsulation Format (hereafter, TNEF), which "wraps"
|
19
|
+
Microsoft e-mail attachments.
|
20
|
+
.PP
|
21
|
+
Unfortunately, these "wrapped" attachments are inaccessible to
|
22
|
+
any e-mail client that does not understand TNEF.
|
23
|
+
Fortunately, the
|
24
|
+
.B tnef
|
25
|
+
filter can be used by any MIME-aware client to unpack these attachments.
|
26
|
+
.SH OPTIONS
|
27
|
+
.TP
|
28
|
+
\fB\-f\fP FILE, \fB\-\-file\fP=FILE
|
29
|
+
use FILE as input ('-' denotes stdin).
|
30
|
+
When this option is omitted,
|
31
|
+
.B tnef
|
32
|
+
reads data from stdin.
|
33
|
+
.TP
|
34
|
+
\fB\-C\fP DIR, \-\-\fBdirectory\fP=DIR
|
35
|
+
unpack file attachments into DIR.
|
36
|
+
.TP
|
37
|
+
\fB\-x SIZE, \-\-maxsize=SIZE\fP
|
38
|
+
limit maximum size of extracted archive (bytes)
|
39
|
+
.TP
|
40
|
+
\fB\-t, \-\-list\fP
|
41
|
+
list attached files, do not extract.
|
42
|
+
.TP
|
43
|
+
\fB\-w, \-\-interactive, \-\-confirmation\fP
|
44
|
+
ask for confirmation for every action.
|
45
|
+
.TP
|
46
|
+
\fB\-\-overwrite\fP
|
47
|
+
when extracting attachments, overwrite existing files.
|
48
|
+
.TP
|
49
|
+
\fB\-\-number\-backups\fP
|
50
|
+
when extracting attachments, if file FOO will be overwritten,
|
51
|
+
create FOO.n instead.
|
52
|
+
.TP
|
53
|
+
\fB\-\-use\-paths\fP
|
54
|
+
honor file pathnames specified in the TNEF attachment.
|
55
|
+
For security reasons, paths to attached files are
|
56
|
+
ignored by default.
|
57
|
+
.TP
|
58
|
+
\fB\-\-save\-body FILE\fP
|
59
|
+
Save message body data found in the TNEF data.
|
60
|
+
There can be up to
|
61
|
+
three message bodies in the file, plain text, HTML encoded, and RTF
|
62
|
+
encoded.
|
63
|
+
Which are saved is specified by the \-\-body-pref option.
|
64
|
+
By default the message bodies are written to a file named message with
|
65
|
+
an extension based upon the type (txt, html, rtf).
|
66
|
+
.TP
|
67
|
+
\fB\-\-body\-pref PREF\fP
|
68
|
+
Specifies which of the possibly three message body formats will be
|
69
|
+
saved.
|
70
|
+
PREF can be up to three characters long and each character
|
71
|
+
must be one of 'r', 'h', or 't' specifying RTF, HTML or text.
|
72
|
+
The
|
73
|
+
order is the order that the data will be checked, the first type found
|
74
|
+
will be saved.
|
75
|
+
If PREF is the special value of 'all' then any and all
|
76
|
+
message body data found will be saved.
|
77
|
+
The default is 'rht'.
|
78
|
+
.TP
|
79
|
+
\fB\-\-save-rtf FILE\fP
|
80
|
+
DEPRECATED.
|
81
|
+
Equivalent to \-\-save-body=FILE \-\-body-pref=r
|
82
|
+
.TP
|
83
|
+
\fB\-h, \-\-help\fP
|
84
|
+
show usage message.
|
85
|
+
.TP
|
86
|
+
\fB\-V, \-\-version\fP
|
87
|
+
display version and copyright.
|
88
|
+
.TP
|
89
|
+
\fB\-v, \-\-verbose\fP
|
90
|
+
produce verbose output.
|
91
|
+
.TP
|
92
|
+
\fB\-\-debug\fP
|
93
|
+
enable debug output.
|
94
|
+
.SH "EXAMPLE"
|
95
|
+
The following example demonstrates typical
|
96
|
+
.B tnef
|
97
|
+
usage with a popular Unix mail client called "mutt".
|
98
|
+
.nf
|
99
|
+
.SS "Step 1 \(em Configure ~/.mailcap"
|
100
|
+
Mutt can't use
|
101
|
+
.B tnef
|
102
|
+
for its intended purpose until an appropriate content type definition
|
103
|
+
exists in ~/.mailcap .
|
104
|
+
Here's a sample definition:
|
105
|
+
.PP
|
106
|
+
.RS
|
107
|
+
application/ms\-tnef; tnef \-w %s
|
108
|
+
.RE
|
109
|
+
.PP
|
110
|
+
This mailcap entry says that whenever the MIME content type:
|
111
|
+
.PP
|
112
|
+
.RS
|
113
|
+
application/ms\-tnef
|
114
|
+
.RE
|
115
|
+
.PP
|
116
|
+
is encountered, use this command to decode it:
|
117
|
+
.PP
|
118
|
+
.RS
|
119
|
+
tnef \-w %s
|
120
|
+
.RE
|
121
|
+
.PP
|
122
|
+
The latter command string invokes
|
123
|
+
.BR tnef ","
|
124
|
+
specifying both the \fB\-w\fP option and the attachment (created as a
|
125
|
+
temporary file) as command line arguments.
|
126
|
+
.nf
|
127
|
+
.SS "Step 2 \(em Add The Filter To $PATH"
|
128
|
+
Mutt can't invoke
|
129
|
+
.B
|
130
|
+
tnef
|
131
|
+
if the filter isn't accessible via $PATH.
|
132
|
+
.nf
|
133
|
+
.SS "Step 3 \(em Test Mutt"
|
134
|
+
Use mutt to read a message that includes a TNEF attachment.
|
135
|
+
Mutt will
|
136
|
+
note that an attachment of type "application/ms\-tnef is unsupported".
|
137
|
+
.PP
|
138
|
+
Press the "v" key to open mutt's "view attachment" menu.
|
139
|
+
.PP
|
140
|
+
Move the cursor over the TNEF attachment and press the enter key to "view"
|
141
|
+
the attachment.
|
142
|
+
Mutt will launch
|
143
|
+
.B tnef
|
144
|
+
and invoke it
|
145
|
+
using the command line syntax specified in ~/.mailcap (step 1).
|
146
|
+
.B tnef
|
147
|
+
then decodes all file(s) included in the TNEF attachment, prompting
|
148
|
+
for confirmation prior to creating an individual file (refer to
|
149
|
+
.B \-w
|
150
|
+
option above).
|
151
|
+
.B \-w
|
152
|
+
is useful here because it gives the end user a chance to
|
153
|
+
view the filename(s) included in the mail message.
|
154
|
+
.PP
|
155
|
+
Note that Mutt's attachment menu also supports a pipe option, which permits
|
156
|
+
the user to pipe attachments to an external filter (how convenient).
|
157
|
+
So, to list the contents of a TNEF attachment prior to decoding it, press
|
158
|
+
the "|" key and enter this command:
|
159
|
+
.PP
|
160
|
+
.RS
|
161
|
+
tnef \-t
|
162
|
+
.RE
|
163
|
+
.SH "SEE ALSO"
|
164
|
+
.BR metamail (1),
|
165
|
+
.BR mailcap (4),
|
166
|
+
.BR mutt (1),
|
167
|
+
other email clients.
|
168
|
+
.SH "AUTHOR"
|
169
|
+
Mark Simpson.
|
170
|
+
.SH "REPORTING BUGS"
|
171
|
+
Report bugs to
|
172
|
+
.nh \"no hyphenation
|
173
|
+
Mark Simpson <verdammelt@users.sourceforge.net>
|
174
|
+
.hy 1 \"enable hyphenation
|
175
|
+
.SH "OTHER REFERENCES"
|
176
|
+
This web page:
|
177
|
+
.PP
|
178
|
+
.nf
|
179
|
+
.nh \"no hyphenation
|
180
|
+
http://support.microsoft.com/support/kb/articles/Q136/2/04.asp
|
181
|
+
.hy 1 \"enable hyphenation
|
182
|
+
.fi
|
183
|
+
.PP
|
184
|
+
describes how to configure Microsoft email clients so that the TNEF format
|
185
|
+
is disabled when sending messages to non-TNEF-compatible clients.
|