2021-05-28 15:49:42 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2021-05-28 16:01:42 +00:00
|
|
|
* plugins/abook_carddav/setup.php -- Displays the main frameset
|
2021-05-28 15:49:42 +00:00
|
|
|
*
|
2021-05-28 16:01:42 +00:00
|
|
|
* SquirrelMail Address Book CardDAV Backend
|
|
|
|
* Copyright (C) 2021 Aleksei Shpakovsky
|
|
|
|
* This program is licensed under GPLv3. See COPYING for details
|
|
|
|
* based on:
|
|
|
|
* SquirrelMail Address Book Backend template
|
2021-05-28 15:49:42 +00:00
|
|
|
* Copyright (C) 2004 Tomas Kuliavas <tokul@users.sourceforge.net>
|
|
|
|
* This program is licensed under GPL. See COPYING for details
|
|
|
|
*
|
|
|
|
* Redirects to the login page.
|
|
|
|
*/
|
|
|
|
header("Location: ../../src/login.php\n\n");
|
|
|
|
exit();
|
|
|
|
?>
|