File: uuencode.dif

package info (click to toggle)
smartlist 3.15-28
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,308 kB
  • sloc: ansic: 9,238; sh: 4,901; makefile: 118
file content (30 lines) | stat: -rw-r--r-- 978 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
The following patches can be applied to the .bin/mimencap script to
make them generate uuencoded files instead of the usual MIME encodings.

Patch 1 is needed if your recipient can't deal with base64 encodings.
Patch 2 is only needed if your recipient can't deal with quoted printable
encodings.

--------------------------------patch 1
diff -u mimencap
--- 1.11	1994/06/30 15:48:57
+++ mimencap	1994/08/25 16:41:56
@@ -29 +29 @@
-      | $mimencode -b
+      | uuencode $name
@@ -34 +34 @@
-	 -I "Content-Transfer-Encoding: base64" | \
+	 -I "Content-Transfer-Encoding: x-uuencode" | \
--------------------------------patch end

--------------------------------patch 2
diff -u mimencap
--- 1.11	1994/06/30 15:48:57
+++ mimencap	1994/08/25 16:41:56
@@ -43 +43 @@
-    | $mimencode -q
+    | uuencode $name
@@ -48 +48 @@
-       -I "Content-Transfer-Encoding: quoted-printable" | \
+       -I "Content-Transfer-Encoding: x-uuencode" | \
--------------------------------patch end