init
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 30 Aug 2002 17:30:55 +0000 (17:30 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 30 Aug 2002 17:30:55 +0000 (17:30 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3516 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/deliver/Deliver_IMAP.class.php [new file with mode: 0644]
class/deliver/Deliver_SMTP.class.php [new file with mode: 0644]
class/deliver/Deliver_SendMail.class.php [new file with mode: 0644]

diff --git a/class/deliver/Deliver_IMAP.class.php b/class/deliver/Deliver_IMAP.class.php
new file mode 100644 (file)
index 0000000..026eb58
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+require_once('Deliver.class.php');
+
+class Deliver_IMAP extends Deliver {
+
+}
+?>
diff --git a/class/deliver/Deliver_SMTP.class.php b/class/deliver/Deliver_SMTP.class.php
new file mode 100644 (file)
index 0000000..44c7cfb
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+require_once('Deliver.class.php');
+
+class Deliver_SMTP extends Deliver {
+
+}
+?>
diff --git a/class/deliver/Deliver_SendMail.class.php b/class/deliver/Deliver_SendMail.class.php
new file mode 100644 (file)
index 0000000..eba2215
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+require_once('Deliver.class.php');
+
+class Deliver_SendMail extends Deliver {
+
+}
+?>