This commit was manufactured by cvs2svn to create branch
authorcvs2git <cvs2git>
Wed, 24 Mar 2004 14:22:05 +0000 (14:22 +0000)
committercvs2git <cvs2git>
Wed, 24 Mar 2004 14:22:05 +0000 (14:22 +0000)
'FREESIDE_1_4_BRANCH'.

FS/FS/part_export/passwdfile.pm [new file with mode: 0644]
FS/t/part_export-communigate_pro_singledomain.t [new file with mode: 0644]
FS/t/part_export-passwdfile.t [new file with mode: 0644]
FS/t/part_export-postfix.t [new file with mode: 0644]

diff --git a/FS/FS/part_export/passwdfile.pm b/FS/FS/part_export/passwdfile.pm
new file mode 100644 (file)
index 0000000..2978d25
--- /dev/null
@@ -0,0 +1,18 @@
+package FS::part_export::passwdfile;
+
+use strict;
+use vars qw(@ISA %options);
+use Tie::IxHash;
+use FS::part_export::null;
+
+@ISA = qw(FS::part_export::null);
+
+tie %options, 'Tie::IxHash',
+  'crypt' => { label=>'Password encryption',
+               type=>'select', options=>[qw(crypt md5)],
+               default=>'crypt',
+             },
+;
+
+1;
+
diff --git a/FS/t/part_export-communigate_pro_singledomain.t b/FS/t/part_export-communigate_pro_singledomain.t
new file mode 100644 (file)
index 0000000..6f8a64e
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n" }
+END {print "not ok 1\n" unless $loaded;}
+use FS::part_export::communigate_pro_singledomain;
+$loaded=1;
+print "ok 1\n";
diff --git a/FS/t/part_export-passwdfile.t b/FS/t/part_export-passwdfile.t
new file mode 100644 (file)
index 0000000..0f18f30
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n" }
+END {print "not ok 1\n" unless $loaded;}
+use FS::part_export::passwdfile;
+$loaded=1;
+print "ok 1\n";
diff --git a/FS/t/part_export-postfix.t b/FS/t/part_export-postfix.t
new file mode 100644 (file)
index 0000000..9518caa
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n" }
+END {print "not ok 1\n" unless $loaded;}
+use FS::part_export::postfix;
+$loaded=1;
+print "ok 1\n";