This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE phabricator_user; | |
-- create LDAP mappings for unmapped users | |
-- this query uses a subselect due to the way MySQL reacts to UUID() being | |
-- wrapped in REPLACE() (returns the same UUID for all rows) | |
-- WARNING: make sure user.userName maps to LDAP usernames, otherwise | |
-- user_externalaccount.accountID needs to be modified for those users | |
-- where it doesn't. alternatively, use Phabricator's change username | |
-- utility in People app to change those users' usernames before running | |
INSERT INTO user_externalaccount |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @name EmailInbound (Mail Message Handler for POCO) | |
* @description Receive and sort emails | |
*/ | |
#include "MyMailMessage.h" | |
/** | |
* POCO::Net::MailMessage | |
*/ |