rename squirrelmail_rpc.php to rpc.php, it doesn't make much sense to
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 14 Jul 2007 17:32:50 +0000 (17:32 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 14 Jul 2007 17:32:50 +0000 (17:32 +0000)
have 'squirrelmail' in our path components (i.e. also no squirrelmail_compose.php)

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12531 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/rpc.php [moved from src/squirrelmail_rpc.php with 97% similarity]

similarity index 97%
rename from src/squirrelmail_rpc.php
rename to src/rpc.php
index 35969afd041d083bd0d6352535e1ec54694ca523..a1c05ec56aaf5332595e6787e3df5cf0f450061d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 /**
-  * squirrelmail_rpc.php
+  * rpc.php
   *
   * This file contains the entry point to the "SquirrelMail API" -- the 
   * remote procedure call request receiver.
   */
 
 /** This is the squirrelmail_rpc page */
-define('PAGE_NAME', 'squirrelmail_rpc');
+define('PAGE_NAME', 'rpc');
 
 //FIXME: If we decide to route ALL requests, even normal page
 //       requests through this file, need to change page requests
 //       to something like this
-//http://example.org/squirrelmail/src/squirrelmail_rpc.php?page=read_body&passed_id=47633...
+//http://example.org/squirrelmail/src/rpc.php?page=read_body&passed_id=47633...
 //       This file would then add ".php" to the "page" variable
 //       and pass the request on to that page by simply require()ing
 //       that page and exiting.