Skip to main content

Royal Wedding of Bhutan


The Royal Wedding ceremony of His Majesty the King Jigme Khesar Namgyel Wangchuck took place in the Puna Dewachen Phodrang in Punakha. Jetsun Pema was sanctified as the Queen of Kingdom of Bhutan by His Majesty the King.

The ceremony began at 4 am with the initiation of soong-chhoe prayers at the Marchen Lhakhang and Kuenra of the Punakha Dzong. His Majesty the King, escorted by the sacred retinue, arrived at the Dzong from the Royal Lingkha and lit a golden lamp and offered prayers before the Thongdroel of Zhabdrung in the first courtyard of the Dzong.

The Royal Bride was led in chhipdrel procession into the Dzong, where she lit a golden lamp before the Thongdroel, and exchanged Tashi Jel-Dhar with His Majesty the King.

The Raven Crown and the crown for the Queen of Bhutan were brought out from the Most Holy Macchen Lhakhang, along with a Golden Bumpa and the sacred five coloured dhar.

The Fourth Druk Gyalpo bestowed the sacred dhar upon the Royal Bride, sanctifying the Royal Wedding.
In the Kuenrey, The Royal Bride offered the ambrosia of eternal life, signifying her devotion to the glorious continuity of the Wangchuck Dynasty, from the Golden Bumpa, to His Majesty the King.

His Majesty then bestowed the crown of the Druk Gyal-tsuen to the Royal Bride, and Ashi Jetsun Pema, now as Druk Gyaltshuen Jetsun Pema Wangchuck, ascended to the throne of the Queen of Bhutan, to the left of His Majesty the King.

The ceremony at the Kunrey ended with the offering of Tashi Nga Soel, symbolic offerings to their Majesties the Queen and King of Bhutan. His Holiness the Je Khenpo, The Fourth Druk Gyalpo, and members of the Royal Family and guests offered tashi khadar to the royal couple.
Their Majesties the King and Queen then joined the people of Punakha and guests in a public celebration outside the dzong.

His Majesty granted tokha to the people gathered at the celebration ground.

Source: bbs

Comments

Popular posts from this blog

Clear Zimbra Mail Queue

If you want to clear mail queue from specific email address run the following command in your terminal. Below will remove mail queues, by checking FROM sender. eg. remove all mail queues sent by info@example.com /opt/zimbra/postfix/sbin/mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { if ($7 == "info@example.comt") print $1 } ' | tr -d '*!' | xargs -rn1 /opt/zimbra/postfix/sbin/postsuper -d Below will remove mail queues, by checking TO sender. eg. remove all mail queues sent to info@example.com /opt/zimbra/postfix/sbin/mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { if ($8 == "info@example.comt") print $1 } ' | tr -d '*!' | xargs -rn1 /opt/zimbra/postfix/sbin/postsuper -d

Zimbra Mail Error: not enough free space in mail queue

If you are using Zimbra Mail and you are not able to send any mails and also you see an Error Message " not enough free space in mail queue " under /var/log/message. Then you should try out this solution. 1. Login to the server, and then again login as zimbra as follows: #su - zimbra 2. Check the Postfix message_size_limit, by default it should be 10MB (i.e. '10240000' bytes) as follows: $postconf message_size_limit message_size_limit = 10240000 3. If the value is higher than that, set it as follows to 10MB $ zmprov modifyConfig zimbraMtaMaxMessageSize 10240000 $ postfix reload Now try sending Mail, It should work. You could try out this solution for Error: " SMTP Server Reported: 452 4.3.1 Insufficient System Storage "