|
@@ -0,0 +1,28 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+/**
|
|
|
+ * addressbook.php
|
|
|
+ *
|
|
|
+ * Copyright (c) 1999-2003 The SquirrelMail Project Team
|
|
|
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
|
|
|
+ *
|
|
|
+ * Addressbook vcard, sm@sels.com
|
|
|
+ *
|
|
|
+ * $Id$
|
|
|
+ */
|
|
|
+
|
|
|
+/* Path for SquirrelMail required files. */
|
|
|
+define('SM_PATH','../');
|
|
|
+
|
|
|
+/* SquirrelMail required files. */
|
|
|
+require_once(SM_PATH . 'include/validate.php');
|
|
|
+require_once(SM_PATH . 'functions/display_messages.php');
|
|
|
+require_once(SM_PATH . 'functions/addressbook.php');
|
|
|
+require_once(SM_PATH . 'functions/strings.php');
|
|
|
+require_once(SM_PATH . 'functions/html.php');
|
|
|
+
|
|
|
+/* Add hook for anything that wants on the bottom */
|
|
|
+do_hook('addressbook_bottom');
|
|
|
+?>
|
|
|
+
|
|
|
+</BODY></HTML>
|