--- /dev/null
+<?php
+
+/*
+ * PxPay Functionality Copyright (C) 2008 Lucas Baker,
+ * Logistic Information Systems Limited (Logis)
+ * PxAccess Functionality Copyright (C) 2008 Eileen McNaughton
+ * Licensed to CiviCRM under the Academic Free License version 3.0.
+ *
+ * Grateful acknowledgements go to Donald Lobo for invaluable assistance
+ * in creating this payment processor module
+ */
+
+
+session_start();
+
+require_once '../civicrm.config.php';
+require_once 'CRM/Core/Config.php';
+
+$config = CRM_Core_Config::singleton();
+if (md5($_GET['key']) == md5('meh')) {
+ require_once '../CRM/Core/Payment/trustcommerceIPN.php';
+ $ipn = new CRM_Core_Payment_trustcommerce_IPN;
+ $ipn->main();
+}
+exit;