From Julian.Adler at vectra-corp.com Tue Mar 11 22:45:18 2014 From: Julian.Adler at vectra-corp.com (Julian Adler) Date: Tue, 11 Mar 2014 22:45:18 +0000 Subject: [ZendTo] Single Pickup Message-ID: <4FD0B1250A0F9846B776F975FDF14373010AF8474A@VWMEC10.vectra-corp.com.au> Hi, Is there any way to make a submission delete after a successful pickup. We would like to be able to auto remove designated dropoffs once they have been picked up. Cheers Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140311/80d15439/attachment.html From ebritt at cshlaw.com Wed Mar 12 14:42:40 2014 From: ebritt at cshlaw.com (Erik Britt) Date: Wed, 12 Mar 2014 14:42:40 +0000 Subject: [ZendTo] {Disarmed} RE: Re: AreYouAHuman v reCAPTCHA In-Reply-To: References: Message-ID: <0547C6F1FA7E0D4D8813B36F00C6682D185838D5@CSHEXCH1.cshlaw.com> Hello folks, I?m trying to insert Paul?s code but continue to get Parse errors on my pickup.php page. Has anyone been able to use the code? Is there any edits that need to be made out of the box? Thank you, From: Mike Brudenell [mailto:mike.brudenell at york.ac.uk] Sent: Monday, February 17, 2014 4:28 AM To: zendto at zend.to Subject: [ZendTo] Re: AreYouAHuman v reCAPTCHA Hi, Paul - Many thanks for that; we might see if we can tweak your code to meet our needs. We have been required to ensure that the reCAPTCHA version is available so need either to present both or a toggle to flip between them. Cheers, Mike B-) On 14 February 2014 21:29, Paul Winnick > wrote: Hi Mike, We had a similar situation where we preferred using AreYouAHuman but needed to provide Google?s reCAPTCHA as an alternative for users that met the following conditions. 1. Web browser does not support HTML5. 2. Adobe Flash player is not installed. We added the code below to pickupcheck.tpl and pickup.php, which does a quick check for HTML5 & Flash compatibility then uses a simple PHP variable to determine whether AreYouAHuman or reCaptcha should be used. You?ll also want to make sure your key information for both AreYouAHuman and reCAPTCHA is specified in preferences.php. pickupcheck.tpl To confirm that you are a real person (and not a computer), please play the quick game below then click "Pickup Files":
 
{$recaptchaHTML}
pickup.php $supportsAYAH = isset($_POST['supportsAYAH'])?$_POST['supportsAYAH']:(isset($_GET['supportsAYAH'])?$_GET['supportsAYAH']:NULL); $smarty->assign('supportsAYAH', $supportsAYAH); $ayah = new AYAH(); $captcha = $theDropbox->captcha(); // Check their recaptcha result. If they passed, then write an AuthData // record with their IP in the Name field. This is then used by download.php. // If they failed, re-present the pickup page as if they just went there // again, but with an error message at the top telling them they were wrong. if ( $authSuccess || ( isset($_POST['Action']) && $_POST['Action'] == "Pickup" ) ) { $resp = FALSE; if (!$authSuccess) { if ($captcha == 'areyouahuman' && $supportsAYAH == '') { //if ($captcha == 'areyouahuman') { $resp = $ayah->scoreResult(); } elseif ($supportsAYAH == 'no' || $captcha == '') { //elseif ($captcha == 'google' || $captcha == '') { // Using Google or an old version without this set $reCaptchaPrivateKey = $theDropbox->recaptchaPrivateKey(); if ($reCaptchaPrivateKey == 'disabled') { $resp = TRUE; } else { $resp = recaptcha_check_answer($reCaptchaPrivateKey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); $resp = $resp->is_valid; } } else { // Must be disabled $resp = TRUE; } } if ($authSuccess || $resp) { // They have passed the CAPTCHA so write an AuthData record for them. if (!$authSuccess) { // But only if they haven't already been auth-ed once. $auth = $theDropbox->WriteAuthData($_SERVER['REMOTE_ADDR'], '', ''); } if ( $auth == '') { // Write failed. NSSError("Database failure writing authentication key. Please contact your system administrator.","Internal Error"); displayPickupCheck($theDropbox, $smarty, $ayah, $auth, $supportsAYAH); //displayPickupCheck($theDropbox, $smarty, $ayah, $auth); exit(0); } } else { // The CAPTCHA response was wrong, so re-present the page with an error NSSError($smarty->getConfigVariable('ErrorNotPerson'),"Test failed"); displayPickupCheck($theDropbox, $smarty, $ayah, $auth, $supportsAYAH); //displayPickupCheck($theDropbox, $smarty, $ayah, $auth); exit(0); } // They have passed the test and we have written their AuthData record. $theDropbox->SetupPage(); $smarty->assign('auth', $auth); // And save their auth key! if ( $thePickup = new NSSDropoff($theDropbox) ) { // // Start the page and add some Javascript for automatically // filling-in the download form and submitting it when the // user clicks on a file in the displayed dropoff. // $theDropbox->SetupPage($thePickup->HTMLOnLoadJavascript()); $smarty->display($thePickup->HTMLWrite()); } else { $smarty->display('error.tpl'); } } else { // It's not a pickup attempt, it's going to display the CAPTCHA form // instead which will pass us back to me again. displayPickupCheck($theDropbox, $smarty, $ayah, '', $supportsAYAH); //displayPickupCheck($theDropbox, $smarty, $ayah, ''); } } else { $smarty->display('error.tpl'); } function displayPickupCheck($theDropbox, $smarty, $ayah, $auth, $supportsAYAH) { //function displayPickupCheck($theDropbox, $smarty, $ayah, $auth) { $theDropbox->SetupPage(); $claimID = isset($_POST['claimID'])?$_POST['claimID']:(isset($_GET['claimID'])?$_GET['claimID']:NULL); $claimPasscode = isset($_POST['claimPasscode'])?$_POST['claimPasscode']:(isset($_GET['claimPasscode'])?$_GET['claimPasscode']:NULL); $emailAddr = isset($_POST['emailAddr'])?$_POST['emailAddr']:(isset($_GET['emailAddr'])?$_GET['emailAddr']:NULL); $claimID = preg_replace('/[^a-zA-Z0-9]/', '', $claimID); $claimPasscode = preg_replace('/[^a-zA-Z0-9]/', '', $claimPasscode); if ( isset($recipEmail) && ! preg_match($theDropbox->validEmailRegexp(),$recipEmail) ) { $emailAddr = 'INVALID'; } $smarty->assign('claimID', $claimID); $smarty->assign('claimPasscode', $claimPasscode); $smarty->assign('emailAddr', $emailAddr); $smarty->assign('auth', $auth); // Check if the visitor's Web browser supports HTML5 or Flash. If not, use reCaptcha. if ($supportsAYAH == "no") { $reCaptchaPublicKey= $theDropbox->recaptchaPublicKey(); $smarty->assign('recaptchaHTML', recaptcha_get_html($reCaptchaPublicKey,"",$_SERVER['HTTPS'])); } else { $smarty->assign('recaptchaHTML', $ayah->getPublisherHTML()); } //if ($theDropbox->captcha() == 'areyouahuman') { // $smarty->assign('recaptchaHTML', $ayah->getPublisherHTML()); //} else { // $reCaptchaPublicKey= $theDropbox->recaptchaPublicKey(); // $smarty->assign('recaptchaHTML', // recaptcha_get_html($reCaptchaPublicKey,"",$_SERVER['HTTPS'])); //} $smarty->display('pickupcheck.tpl'); } Paul Winnick Systems Administrator Temple University Computer Services PHONE: 215-204-3205 EMAIL: pwinnick at temple.edu From: zendto-bounces at zend.to [mailto:zendto-bounces at zend.to] On Behalf Of Mike Brudenell Sent: Tuesday, February 11, 2014 10:51 AM To: ZendTo Users Subject: [ZendTo] AreYouAHuman v reCAPTCHA Dear all, Does anyone have a patch that enables both the AreYouAHuman "games" and Google reCAPTCHA to be offered within ZendTo? (Either be showing both, or showing one and a button/link to toggle to the other?) We are currently using AreYouAHuman but for various reasons we now need to offer the choice or else revert to reCAPTCHA only. I've peered at the PHP and templates but haven't been able to figure anything out? Cheers, Mike B-) -- IT Services, The University of York, Heslington, York YO10 5DD, UK Tel: +44-1904-323811 Disclaimer: [Cranfill Sumner & Hartzog LLP] Erik Britt IT Department e-mail www.cshlaw.com p +19198638828 f +19198633427 Post Office Box 27808 Raleigh NC 27611-7808 _______________________________________________ ZendTo mailing list ZendTo at zend.to http://mailman.ecs.soton.ac.uk/mailman/listinfo/zendto -- IT Services, The University of York, Heslington, York YO10 5DD, UK Tel: +44-1904-323811 Disclaimer: Confidentiality Notice: If you are not the intended recipient of this message, you are not authorized to intercept, read, print, retain, copy, forward, or disseminate this communication. This communication may contain information that is proprietary, attorney/client privileged, attorney work product, confidential or otherwise legally exempt from disclosure. If you have received this message in error, please notify the sender immediately either by phone (800-849-4444) or by return e-mail and destroy all copies of this message (electronic, paper, or otherwise). -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140312/c4037829/attachment-0001.html From bbecken at aafp.org Wed Mar 12 15:46:52 2014 From: bbecken at aafp.org (Brad Beckenhauer) Date: Wed, 12 Mar 2014 10:46:52 -0500 Subject: [ZendTo] Question on receipts Message-ID: <53203B1C02000068001036B9@smtp.aafp.org> I don't use the request drop off feature much, but I have a user that says they previously used to receive a receipt when they sent a request for drop off. Is that right? I know they get a receipt when the recipient uploads the file. I'm drawing blank, so I'm asking you all for a re-fresher.... thanks Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140312/b4400c90/attachment.html From I.Elston at bolton.ac.uk Wed Mar 12 16:14:49 2014 From: I.Elston at bolton.ac.uk (Elston, Ian) Date: Wed, 12 Mar 2014 16:14:49 -0000 Subject: [ZendTo] Re: Question on receipts In-Reply-To: <53203B1C02000068001036B9@smtp.aafp.org> References: <53203B1C02000068001036B9@smtp.aafp.org> Message-ID: <27ABD7C80B2640449E52A9955A94B1949449@YETI.bolton.ac.uk> I'm still running 4.00 (only as a test) and I requested a drop-off to an external account. The only email I received was when the drop-off was made, NOT when the invitation to drop off was sent. Hope this helps. -----Original Message----- From: zendto-bounces at zend.to [mailto:zendto-bounces at zend.to] On Behalf Of Brad Beckenhauer Sent: 12 March 2014 15:47 To: zendto at zend.to Subject: [ZendTo] Question on receipts I don't use the request drop off feature much, but I have a user that says they previously used to receive a receipt when they sent a request for drop off. Is that right? I know they get a receipt when the recipient uploads the file. I'm drawing blank, so I'm asking you all for a re-fresher.... thanks Brad From wolfgang.wagner at riwa-gis.de Wed Mar 12 17:54:58 2014 From: wolfgang.wagner at riwa-gis.de (wolfgang.wagner at riwa-gis.de) Date: Wed, 12 Mar 2014 18:54:58 +0100 Subject: [ZendTo] how to change sender-domain in mail for dropoff-receiver Message-ID: Hello, Our zendto has an internal fully qualified domainname: zendto.in.riwa-gis.de This name is inserted in the mail with the downloadlink: http: // zendto.in.riwa-gis.de/pickup.php?claimID=............ But this domain "in.riwa-gis.de" can not resolved from outside our organisation. Our outside-domain is only riwa-gis.de, so zendto should be visible in the mail as zendto.riwa-gis.de . This name can resolved via DNS from outside. The FQDN from outside is "zendto.riwa-gis.de", but not in the mail. I tried many options to change hostname and domain on the machine itself, but the link in the mail stays always with the internal DNS-name. Where comes this setting from and how can I modify this setting? mit freundlichen Gruessen Wolfgang Wagner Systemadministration RIWA GmbH Gesellschaft fuer Geoinformationen Zwingerstr. 2, 87435 Kempten Tel: +49 (0) 831 / 522963-537 Fax: +49 (0) 831 / 522963-546 E-Mail: wolfgang.wagner at riwa-gis.de http://www.riwa-gis.de RIWA GmbH, Zwingerstrasse 2, 87435 Kempten Sitz der Gesellschaft: Kempten (Allgaeu) Registergericht: Amtsgericht Kempten, HRB 6480 Geschaeftsfuehrer: Dipl.-Ing. Guenter Kraus From NSnidanko at wajax.com Fri Mar 14 15:19:00 2014 From: NSnidanko at wajax.com (Naz Snidanko) Date: Fri, 14 Mar 2014 15:19:00 +0000 Subject: [ZendTo] Re: Multiple domains Message-ID: Hi Kevin, We have it in place already, for 5 domains. You need to adjust config and functions in lib\NSSADAuthenticator.php file. There is a nicer way of doing it but it's simplest way without rewriting to much code public function __construct( $prefs, $db ) { if ( $prefs['authLDAPAdmins'] && (! $prefs['authAdmins']) ) { $prefs['authAdmins'] = $prefs['authLDAPAdmins']; } parent::__construct($prefs, $db); $this->_ldapServers1 = $prefs['authLDAPServers1']; $this->_ldapBase1 = $prefs['authLDAPBaseDN1']; $this->_ldapAccountSuffix1 = $prefs['authLDAPAccountSuffix1']; $this->_ldapUseSSL1 = $prefs['authLDAPUseSSL1']; $this->_ldapBindUser1 = $prefs['authLDAPBindUser1']; $this->_ldapBindPass1 = $prefs['authLDAPBindPass1']; $this->_ldapOrg1 = $prefs['authLDAPOrganization1']; $this->_ldapServers2 = $prefs['authLDAPServers2']; $this->_ldapBase2 = $prefs['authLDAPBaseDN2']; $this->_ldapAccountSuffix2 = $prefs['authLDAPAccountSuffix2']; $this->_ldapUseSSL2 = $prefs['authLDAPUseSSL2']; $this->_ldapBindUser2 = $prefs['authLDAPBindUser2']; $this->_ldapBindPass2 = $prefs['authLDAPBindPass2']; $this->_ldapOrg2 = $prefs['authLDAPOrganization2']; //CUSTOM CODE STARTS HERE // Created by Naz Snidanko Oct 02, 2012 $this->_ldapServers3 = $prefs['authLDAPServers3']; $this->_ldapBase3 = $prefs['authLDAPBaseDN3']; $this->_ldapAccountSuffix3 = $prefs['authLDAPAccountSuffix3']; $this->_ldapUseSSL3 = $prefs['authLDAPUseSSL3']; $this->_ldapBindUser3 = $prefs['authLDAPBindUser3']; $this->_ldapBindPass3 = $prefs['authLDAPBindPass3']; $this->_ldapOrg3 = $prefs['authLDAPOrganization3']; $this->_ldapServers4 = $prefs['authLDAPServers4']; $this->_ldapBase4 = $prefs['authLDAPBaseDN4']; $this->_ldapAccountSuffix4 = $prefs['authLDAPAccountSuffix4']; $this->_ldapUseSSL4 = $prefs['authLDAPUseSSL4']; $this->_ldapBindUser4 = $prefs['authLDAPBindUser4']; $this->_ldapBindPass4 = $prefs['authLDAPBindPass4']; $this->_ldapOrg4 = $prefs['authLDAPOrganization4']; $this->_ldapServers5 = $prefs['authLDAPServers5']; $this->_ldapBase5 = $prefs['authLDAPBaseDN5']; $this->_ldapAccountSuffix5 = $prefs['authLDAPAccountSuffix5']; $this->_ldapUseSSL5 = $prefs['authLDAPUseSSL5']; $this->_ldapBindUser5 = $prefs['authLDAPBindUser5']; $this->_ldapBindPass5 = $prefs['authLDAPBindPass5']; $this->_ldapOrg5 = $prefs['authLDAPOrganization5']; // CUSTOM CODE ENDS HERE $this->_ldapMemberKey = strtolower($prefs['authLDAPMemberKey']); $this->_ldapMemberRole= strtolower($prefs['authLDAPMemberRole']); } public function validUsername( $uname, &$response ) { $result = FALSE; $this->_ldapServers = $this->_ldapServers1; $this->_ldapUseSSL = $this->_ldapUseSSL1; $this->_ldapBindUser = $this->_ldapBindUser1; $this->_ldapBindPass = $this->_ldapBindPass1; $this->_ldapBase = $this->_ldapBase1; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix1; $this->_ldapOrg = $this->_ldapOrg1; $result = $this->Tryvalid($uname, $response); if ($result !== -70 && $result !== -69) { return TRUE; } // Bail out quietly if there isn't a 2nd AD forest if (empty($this->_ldapServers2)) { return FALSE; } $this->_ldapServers = $this->_ldapServers2; $this->_ldapUseSSL = $this->_ldapUseSSL2; $this->_ldapBindUser = $this->_ldapBindUser2; $this->_ldapBindPass = $this->_ldapBindPass2; $this->_ldapBase = $this->_ldapBase2; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix2; $this->_ldapOrg = $this->_ldapOrg2; $result = $this->Tryvalid($uname, $response); if ($result !== -70 && $result !== -69) { return TRUE; } // CUSTOM CODE STARTS HERE // Created by Naz Snidanko Oct 02, 2012 // Bail out quietly if there isn't a 3rd AD forest if (empty($this->_ldapServers3)) { return FALSE; } $this->_ldapServers = $this->_ldapServers3; $this->_ldapUseSSL = $this->_ldapUseSSL3; $this->_ldapBindUser = $this->_ldapBindUser3; $this->_ldapBindPass = $this->_ldapBindPass3; $this->_ldapBase = $this->_ldapBase3; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix3; $this->_ldapOrg = $this->_ldapOrg3; $result = $this->Tryvalid($uname, $response); if ($result !== -70 && $result !== -69) { return TRUE; } // Bail out quietly if there isn't a 4th AD forest if (empty($this->_ldapServers4)) { return FALSE; } $this->_ldapServers = $this->_ldapServers4; $this->_ldapUseSSL = $this->_ldapUseSSL4; $this->_ldapBindUser = $this->_ldapBindUser4; $this->_ldapBindPass = $this->_ldapBindPass4; $this->_ldapBase = $this->_ldapBase4; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix4; $this->_ldapOrg = $this->_ldapOrg4; $result = $this->Tryvalid($uname, $response); if ($result !== -70 && $result !== -69) { return TRUE; } // Bail out quietly if there isn't a 5th AD forest if (empty($this->_ldapServers5)) { return FALSE; } $this->_ldapServers = $this->_ldapServers5; $this->_ldapUseSSL = $this->_ldapUseSSL5; $this->_ldapBindUser = $this->_ldapBindUser5; $this->_ldapBindPass = $this->_ldapBindPass5; $this->_ldapBase = $this->_ldapBase5; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix5; $this->_ldapOrg = $this->_ldapOrg5; $result = $this->Tryvalid($uname, $response); if ($result === -70) { NSSError('Check User: Unable to connect to any of the LDAP servers; could not authenticate user.','LDAP Error'); return FALSE; } else if ($result === -69) { // NSSError('Check User: Incorrect username or password.','LDAP Error'); return FALSE; } // return $result; return TRUE; } public function authenticate( &$uname, $password, &$response ) { $result = FALSE; // The username should not be their email address. // So remove everything after any @ sign. // And remove any domain name on the front, separated by \ // Passed by reference so should change what is stored in the calling code. $uname = preg_replace('/@.*$/', '', $uname); $uname = preg_replace('/^.*\\\/', '', $uname); $this->_ldapServers = $this->_ldapServers1; $this->_ldapUseSSL = $this->_ldapUseSSL1; $this->_ldapBindUser = $this->_ldapBindUser1; $this->_ldapBindPass = $this->_ldapBindPass1; $this->_ldapBase = $this->_ldapBase1; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix1; $this->_ldapOrg = $this->_ldapOrg1; $result = $this->Tryauthenticate($uname, $password, $response); if ($result !== -69 && $result !== -70) { return TRUE; } $this->_ldapServers = $this->_ldapServers2; $this->_ldapUseSSL = $this->_ldapUseSSL2; $this->_ldapBindUser = $this->_ldapBindUser2; $this->_ldapBindPass = $this->_ldapBindPass2; $this->_ldapBase = $this->_ldapBase2; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix2; $this->_ldapOrg = $this->_ldapOrg2; $result = $this->Tryauthenticate($uname, $password, $response); if ($result !== -69 && $result !== -70) { return TRUE; } $this->_ldapServers = $this->_ldapServers3; $this->_ldapUseSSL = $this->_ldapUseSSL3; $this->_ldapBindUser = $this->_ldapBindUser3; $this->_ldapBindPass = $this->_ldapBindPass3; $this->_ldapBase = $this->_ldapBase3; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix3; $this->_ldapOrg = $this->_ldapOrg3; $result = $this->Tryauthenticate($uname, $password, $response); if ($result !== -69 && $result !== -70) { return TRUE; } $this->_ldapServers = $this->_ldapServers4; $this->_ldapUseSSL = $this->_ldapUseSSL4; $this->_ldapBindUser = $this->_ldapBindUser4; $this->_ldapBindPass = $this->_ldapBindPass4; $this->_ldapBase = $this->_ldapBase4; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix4; $this->_ldapOrg = $this->_ldapOrg4; $result = $this->Tryauthenticate($uname, $password, $response); if ($result !== -69 && $result !== -70) { return TRUE; } $this->_ldapServers = $this->_ldapServers5; $this->_ldapUseSSL = $this->_ldapUseSSL5; $this->_ldapBindUser = $this->_ldapBindUser5; $this->_ldapBindPass = $this->_ldapBindPass5; $this->_ldapBase = $this->_ldapBase5; $this->_ldapAccountSuffix = $this->_ldapAccountSuffix5; $this->_ldapOrg = $this->_ldapOrg5; $result = $this->Tryauthenticate($uname, $password, $response); if ($result === -70) { // Failed because we couldn't connect to any auth servers NSSError('Check User: Unable to connect to any of the LDAP servers; could not authenticate user.','LDAP Error'); return FALSE; } else if ($result === -69) { // Failed because the user failed authentication tests // NSSError('Check User: Incorrect username or password.','LDAP Error'); return FALSE; } return TRUE; } Cheers, [Description: Description: Wajax Corporation Logo-signature]Naz Snidanko, Junior IT Network Analyst Information Technology | Wajax Industrial Componenets | Wajax.com | nsnidanko at wajax.com | Dir 905.212.3383 | Cell 416.937.0172 | Fax 905.212.3350 3280 Wharton Way, Mississauga, Ontario, Canada L4X 2C5 CONFIDENTIALITY: This message and any attachments may contain information that is confidential. If you have received this message in error, please advise the sender immediately by e-mail and delete this message and any copy. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/1f01c6fb/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8575 bytes Desc: image001.jpg Url : http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/1f01c6fb/attachment-0002.jpg -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 2109 bytes Desc: image003.jpg Url : http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/1f01c6fb/attachment-0003.jpg From kle at msktd.com Fri Mar 14 20:19:01 2014 From: kle at msktd.com (Kenneth Etter) Date: Fri, 14 Mar 2014 16:19:01 -0400 Subject: [ZendTo] Email integration Message-ID: <53232BF502000013000F577F@mail.msktd.com> We have all our contacts in our email address books. When using Zend.To, we have to type or cut/paste addresses into Zend.To. It isn't a huge deal. But I am curious as to whether anyone has looked into some type of email integration for Zend.To that would eliminate this. Interfacing directly with various email address books might be a bit involved. But I have heard of other file transfer services that intercept emails with overly large attachments and handle the transfer rather that letting it go out by email. So are there any options for Zend.To? - Ken Kenneth Etter, Architect MSKTD & Associates, Inc. http://www.msktd.com 260.432.9337 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/65f2bcb3/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Etter, Kenneth.vcf Type: application/octet-stream Size: 305 bytes Desc: not available Url : http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/65f2bcb3/attachment.obj From Kevin_Miller at ci.juneau.ak.us Fri Mar 14 21:23:48 2014 From: Kevin_Miller at ci.juneau.ak.us (Kevin Miller) Date: Fri, 14 Mar 2014 13:23:48 -0800 Subject: [ZendTo] Re: Multiple domains In-Reply-To: References: Message-ID: Naz, thanks much. All three domains are now able to connect. Appreciate the help... ...Kevin -- Kevin Miller Network/email Administrator, CBJ MIS Dept. 155 South Seward Street Juneau, Alaska 99801 Phone: (907) 586-0242, Fax: (907) 586-4500 Registered Linux User No: 307357 From: zendto-bounces at zend.to [mailto:zendto-bounces at zend.to] On Behalf Of Naz Snidanko Sent: Friday, March 14, 2014 7:19 AM To: zendto at zend.to Subject: [ZendTo] Re: Multiple domains Hi Kevin, We have it in place already, for 5 domains. You need to adjust config and functions in lib\NSSADAuthenticator.php file. There is a nicer way of doing it but it's simplest way without rewriting to much code snip Cheers, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140314/a4f77f3f/attachment.html From ebritt at cshlaw.com Mon Mar 17 18:15:07 2014 From: ebritt at cshlaw.com (Erik Britt) Date: Mon, 17 Mar 2014 18:15:07 +0000 Subject: [ZendTo] {Disarmed} Authentication Failure when picking up Message-ID: <0547C6F1FA7E0D4D8813B36F00C6682D1858DC62@CSHEXCH1.cshlaw.com> [cid:image002.jpg at 01CF41EB.4BD14680] I have been previously trying to implement code to do a flash/html5 check to present users with the correct captcha for their browser. This was working for the first time this morning, which is when we had a user complain about the above error. I have since replaced the Verify.php and verify.tpl files with the originals, but still get this error. I don?t know if the two things have anything to do with one another, but timing seems suspect. If I click the pickup page and enter the claim id and passcode manually, the url will display with ?invalid_email_address? in place of the address. Any ideas on what to check, I?ve gone through and reversed any changes that have been made over the past week. Thank you [Cranfill Sumner & Hartzog LLP] Erik Britt IT Department e-mail www.cshlaw.com p +19198638828 f +19198633427 Post Office Box 27808 Raleigh NC 27611-7808 Confidentiality Notice: If you are not the intended recipient of this message, you are not authorized to intercept, read, print, retain, copy, forward, or disseminate this communication. This communication may contain information that is proprietary, attorney/client privileged, attorney work product, confidential or otherwise legally exempt from disclosure. If you have received this message in error, please notify the sender immediately either by phone (800-849-4444) or by return e-mail and destroy all copies of this message (electronic, paper, or otherwise). -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140317/0767f736/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 12623 bytes Desc: image002.jpg Url : http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140317/0767f736/attachment-0001.jpg From gsink at leehartman.com Wed Mar 12 19:08:39 2014 From: gsink at leehartman.com (Garan Sink) Date: Wed, 12 Mar 2014 15:08:39 -0400 Subject: [ZendTo] Authentication Error...for just one user? Message-ID: <0ea1aa4a75acfffe91c1b3212f755620@mail.gmail.com> I'm putting this in place in an AD environment and I've sorted out the correct settings for AD for the various attributes in the preferences.php file but have one issue that I'm not not able to resolve. My own personal domain account is not able to authenticate, however every other user I've tested and test user's I've created work just fine. My user is in an OU, the same as others I've tested, that is properly defined as the base DN. I'm also specified as a site admin in the preferences file, which another use is as well. He can login fine, I can't. Very strange but I've run out of ideas.. I've done the usual clearing of cookies/temp files/etc., of course, reset apache, restarted the zendto server, blabla double checked everything but can't quite figure this one out after a few hours worth of tinkering. Anyone run across this before or have any tips? Garan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140312/97eb4a1a/attachment.html From mailing.list at tem4uk.ru Wed Mar 26 17:59:40 2014 From: mailing.list at tem4uk.ru (Artyom Aleksandrov) Date: Thu, 27 Mar 2014 00:59:40 +0700 Subject: [ZendTo] Re: Authentication Error...for just one user? In-Reply-To: <0ea1aa4a75acfffe91c1b3212f755620@mail.gmail.com> References: <0ea1aa4a75acfffe91c1b3212f755620@mail.gmail.com> Message-ID: Hi, check locked users page via administrative menu. May be you user locked. On Mar 25, 2014 6:24 PM, "Garan Sink" wrote: > I?m putting this in place in an AD environment and I?ve sorted out the > correct settings for AD for the various attributes in the preferences.php > file but have one issue that I?m not not able to resolve. My own personal > domain account is not able to authenticate, however every other user I?ve > tested and test user?s I?ve created work just fine. My user is in an OU, > the same as others I?ve tested, that is properly defined as the base DN. > I?m also specified as a site admin in the preferences file, which another > use is as well. He can login fine, I can?t. > > > > Very strange but I?ve run out of ideas.. I?ve done the usual clearing of > cookies/temp files/etc., of course, reset apache, restarted the zendto > server, blabla double checked everything but can?t quite figure this one > out after a few hours worth of tinkering. Anyone run across this before or > have any tips? > > > > Garan > > _______________________________________________ > ZendTo mailing list > ZendTo at zend.to > http://mailman.ecs.soton.ac.uk/mailman/listinfo/zendto > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ecs.soton.ac.uk/pipermail/zendto/attachments/20140327/15cbf5fd/attachment.html