...
SCENARIO | USER ID | Mark (tailmark) |
---|---|---|
Password for all accounts is Clark2005! for development and acceptance | ||
005256 | ||
Single Aircraft | 005197 | |
Owner not reported in years | 596873 | |
Regular user | 014885 | |
Fleet | 558885 | FALE |
Fleet | 003530 | One of them is GDCL |
Goes directly to Modify mode without having to press a Modify button. | 004084 | |
007278 |
AAIR – Updating the AAIR Password template:
Email templates are in the CAWIS table A42_EMAIL_CONTENT
The template for resetting the AAIR password is:
EMAIL_CONTENT_ID = 44
EMAIL_CONTENT_NAME_NM AAIR_ACCESS_CODE_REQUEST
Send_EMAIL_FUNCTION.fnc
The function for sending AAIR emails is handled in the CAWIS database: SEND_FUNCTION.fnc
To format the text, see the section -- Message header
The HTML formatting was enabled by uncommenting
utl_smtp.write_data(l_maicon, 'Content-Type: text/html' || utl_tcp.crlf);
PK_AIRCRAFT:
To update the parameters in the email text found in the LOBs (EMAIL_EBODY_LOB, EMAIL_FBODY_LOB), for example, [%5%], see PK_AIRCRAFT.pkb, The relevant stored procedure is SP_SendAccessCodeEmail, (L_EMAIL_BODY_ETXT and L_EMAIL_BODY_FTXT) of the package body. No changes were made in the package spec code.
Updating the email template:
The script below was used to update the template. Note: it is important to ensure that the correct URLs are set for dev, acc and prod, in the English and French texts.
Code Block |
---|
SET DEFINE OFF;
update CAWIS.A42_EMAIL_CONTENT
set
EMAIL_CONTENT_NAME_NM = 'AAIR_ACCESS_CODE_REQUEST',
EMAIL_FROM_TXT = 'AAIR/RAINA(TC)<tc.aair-raina.tc@tc.gc.ca>',
EMAIL_SUBJECT_ETXT = 'AAIR Notification - Forgotten User ID or Password',
EMAIL_SUBJECT_FTXT = 'Notification du RAINA - ID utilisateur ou mot de passe oublié',
LAST_MOD_BY_USER_ID ='ADMIN',
IS_IMPORTANT_IND = 'N',
LAST_MOD_TIMESTAMP_DTE = SYSDATE,
DATE_CURRENT_DTE = SYSDATE,
EMAIL_EBODY_LOB =
'<pre>
Good day, [%1%],
Your User ID is [%6%]. Please record this User ID as it will remain the same each year.
Please click the link to log into the AAIR portal:
https://catcappsx.tc.gc.ca/Saf-Sec-Sur/2/cawis-swimn/a_l.aspx?a=
Forgotten password? If you forgot or want to change your password, please click the link below:
https://catcappsx.tc.gc.ca/Saf-Sec-Sur/2/CAWIS-SWIMN/ForPss.aspx?m=A&lang=eng&hsh=[%2%]
Please be aware that:
<li> The password link is valid for the next 24 hours from the receipt of this email;</li>
<li> The password link can only be used once;
<li> This request nullifies any previous request;
<li> If you''re having trouble with the link, copy and paste it into your web browser.
For security reasons, this request was received at [%5%]. If you did not initiate this request,
please notify the AAIR team in writing at <a href="mailto:tc.aair-raina.tc@tc.gc.ca">tc.aair-raina.tc@tc.gc.ca</a>.
Thank you,
The AAIR team
</pre>',
EMAIL_FBODY_LOB =
'<pre>
Bonjour, [%1%],
Votre identifiant d’utilisateur est [%6%]. Veuillez noter votre identifiant d’utilisateur car il restera le même chaque année.
Cliquez sur le lien suivant pour vous connecter au portail RAINA :
http://catcappsx/Saf-Sec-Sur/2/CAWIS-SWIMN/a_l.aspx?a=&lang=fra
Mot de passe oublié? Si vous avez oublié ou si vous souhaitez changer votre mot de passe, veuillez cliquer sur le lien ci-dessous:
https://catcappsx.tc.gc.ca/Saf-Sec-Sur/2/CAWIS-SWIMN/ForPss.aspx?m=A
Sachez que:
<li> Le lien vers le mot de passe est valable pendant les 24 heures qui suivent la réception de ce courriel;</li>
<li> Ce lien vers le mot de passe ne peut être utilisé qu''une seule fois;</li>
<li> Cette requête annule toute requête précédente;</li>
<li> Si vous rencontrez des problèmes avec le lien, copiez-le et collez-le dans votre navigateur Web.</li>
Pour des raisons de sécurité, cette requête a été reçue à [%5%]. Si vous n''êtes pas à l''origine de la demande,
veuillez en informer l''équipe RAINA par écrit à l''adresse suivante : <a href="mailto:tc.aair-raina.tc@tc.gc.ca">tc.aair-raina.tc@tc.gc.ca</a>.
Merci,
L''équipe RAINA
</pre>'
where EMAIL_CONTENT_ID = '44';
commit; |
Configuration:
See: CAWIS - configuration settings for Dev and Acc (TR47_CAWIS_GENERAL_PROPS and web.config)
...