Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

System Profile

System Full Name

CAWIS Mail Distribution Module

System Full Name (French)

SWIMN Module de distribution du courrier

Business Administrator

Jenny Young

Business Owner

Jenny Young

Director

Philippe Ngassam

Subject Matter Expert

Civil Aviation Maintenance Team

Division

National Aircraft Certification

NTARS Code

CA60(?)

Source Location

Source Code Location

http://tfsprod:8080/tfs/civav/CAWIS-WAAU/_dashboards

Migration to DevOps

  •  

New Source Code Location (DevOps)

https://dev.azure.com/transport-canada/DSD-CIVAV Support/_git/CAWIS-MDM

...

e-mail notifications regarding expiration of the AAIR inbox password

nbox inbox access:

...

alain.asgill@tc.gc.ca   ASGILLA

...

phuong.nguyen@tc.gc.ca  NGUYEPH

...

riadh.said@tc.gc.ca     SAIDR  

...

christopher.collins@tc.gc.ca  COLCHRI

...

haoyuan.wang@tc.gc.ca   WANGHA  

...

rajesh.shah@tc.gc.ca    SHAHR  

...

hiren.amin@tc.gc.ca     AMINH  

...

siamak.shirzad@tc.gc.ca SHIRZAS

...

sufyan.maghur@tc.gc.ca  MAGHUSU

...

These permissions take min 24 hrs to apply at which time mailbox

can be added using instructions located in Knowledge base

...

Access to the AAIR inbox

To fix the AAIR Password issue

1. Log an Orion ticket using the Orion “Report an issue” category:

...

  1. In the table TR47_CAWIS_GENERAL_PROPS:

    First, backup the existing password/encryption info

    UPDATE TR47_CAWIS_GENERAL_PROPS A SET A.PROPERTY_VALUE =
    (SELECT PROPERTY_VALUE FROM TR47_CAWIS_GENERAL_PROPS B
    WHERE B.PROPERTY_NAME = 'MDM - MAILBOX PASSWORD' )
    WHERE PROPERTY_NAME = 'MDM BACKUP - LAST KNOWN PASSWORD';

    UPDATE TR47_CAWIS_GENERAL_PROPS SET PROPERTY_VALUE =
    (SELECT PROPERTY_VALUE FROM TR47_CAWIS_GENERAL_PROPS B
    WHERE B.PROPERTY_NAME = 'MDM - MAILBOX PASSWORD SECRET' )
    WHERE PROPERTY_NAME = 'MDM BACKUP - LAST SECRET ENCRYPTION';

    then, null out the encryption key

    UPDATE TR47_CAWIS_GENERAL_PROPS SET PROPERTY_NAME = NULL
    WHERE PROPERTY_NAME = 'MDM - MAILBOX PASSWORD SECRET';

    Note : most fields (with the exception of “password” ) will be UPPERCASED when saved on the TR47 interface page in CAWIS. This would nullify any benefits of backing up up the old encrypted password at this point.

Clearing the value ofMDM - MAILBOX PASSWORD SECRET is to tell MDM that the password is unencrypted. (Do not remove the row).

a. Set the value of MDM - MAILBOX PASSWORDto the new, unencrypted password.

b. Set the value of MDM - MAILBOX PASSWORD LAST CHECK DATE to SYSDATE + 2”. This will ensure that MDM does the password change two days after the reset (you have to wait a day to do another password change)

...