Skip to main content

Dawah to Those Who Don’t Share our Islamic Faith, One at a Time - By Yaser Birjas

  
Download now or listen on posterous
prophetsofislam_oct2709.mp3 (6510 KB)

I started writing this piece in the last few days of October, so it relates to events from just over a month ago.

Two days ago, I was invited to give a talk on “Prophets of Islam” at the Moraine Valley Community College in Chicago Land. It was hosted by the MSA via the public educational program at the campus’s library. I liked the idea of hosting these events at the library since it was open and readily accessible to the general public.

The hosts, both the MSA and the library administration, were gracious and welcoming. Oddly enough, I was given a friendly heads-up that some people in the audience might not necessarily be there to listen, but rather to argue and debate, so that I was fully aware and prepared for such a turn of events. I politely answered jokingly with a smile, “I just moved here from Texas, so don’t worry about it. I always carry my guns on me.”  Seriously though, I am used to discussions and debates like these, alhamdulillah.

In my career as an Imam and religious leader, most of my work has been in the dawah arena. It is in this area that I have had the opportunity to deal and interact with people of different faiths and at different levels of education and devotion. I have spoken in churches and temples, colleges and universities, schools and libraries and an assortment of other places. I have discussed matters of faith and religion with priests and pastors, with laymen and missionaries, and all those who are in between. I always find these discussions interesting and engaging.

Not all these discussion conclude with someone’s conversion to Islam, but for sure many people have left more enlightened than when they came first. Many have even expressed their appreciation for new insights into faith and religion that they acquired from my presentation or discussions. In my talks I encourage people to ask the most pressing questions that they have about Islam. I let them know my own limits but at the same time giving them what could be a once in a lifetime opportunity to discuss the topic of Islam with someone who claims to be an adherent to it, even in a position of leadership. There have been some incidents in which people have come after a long time, on one occasion after 3 years, to give their Shahada and become Muslim. These people took their time to conduct their own research, which was triggered by a casual discussion on Islam and faith.

Back to the Moraine Valley event then, many people showed up: Muslims and non-Muslims alike. Many were there to listen to the subject of “The Prophets of Islam”, while many others just gathered there out of curiosity. The presentation went smooth, but to my surprise no one wanted to ask any questions after it. I started wondering where the hostile crowd went, but sure enough after some encouragement, people started asking few questions here and there.

There was one group that remained silent while diligently taking notes– a group of middle-aged men and women. I felt that they were church members and were attending to listen and learn. But none from the group asked any question and I was eager to engage them. After I was done talking to the people, I headed towards them and I was addressed immediately by a seemingly well-educated and eloquent lady, who asked,

“You said you believed in the original book of Jesus.”

I replied, “Yes, Ma’am.”

“Where is it then? I want read it”

To this I replied, “You tell me, where is it? I want to read it too.”

Then we delved into a discussion over the origins of the bible and the difference between versions and the original text, and many other relevant topics. At the end, I could feel that the discussion shook the lady a little bit, and her eyes were filled with tears tears.

She said,”Why has no one ever told us this before?” I didn’t really have much to say at this point except inviting her to study Islam more.

Suddenly, a man from the group told her, “So what do you want? If you’re ready, why don’t you become a Muslim?”

She said: “All what I want is peace.”

“And that is Islam,” I said.

Then I turned to the man who called out to her to become a Muslim and said to him: “What about you? Why don’t YOU become a Muslim?”

To this he raised his hands and said: “I submit to the will of God.”

I said: “Well, that is Islam too.”

We exchanged phone numbers and emails, and I wished them the best in their pursuit for the truth.

Couple of weeks later I received an email. The lady gave her shahada. Alhamdulillah.

Yaser Birjas

Posted via email from What I See

Comments

Popular posts from this blog

Zabbix History Table Clean Up

Zabbix history table gets really big, and if you are in a situation where you want to clean it up. Then we can do so, using the below steps. Stop zabbix server. Take table backup - just in case. Create a temporary table. Update the temporary table with data required, upto a specific date using epoch . Move old table to a different table name. Move updated (new temporary) table to original table which needs to be cleaned-up. Drop the old table. (Optional) Restart Zabbix Since this is not offical procedure, but it has worked for me so use it at your own risk. Here is another post which will help is reducing the size of history tables - http://zabbixzone.com/zabbix/history-and-trends/ Zabbix Version : Zabbix v2.4 Make sure MySql 5.1 is set with InnoDB as innodb_file_per_table=ON Step 1 Stop the Zabbix server sudo service zabbix-server stop Script. echo "------------------------------------------" echo " 1. Stopping Zabbix Server ...

Installing Zabbix Version 2.4 Offline (Zabbix Server without Internet).

There might be situations where you have a remote/zabbix server which does not have internet connectivity, due to security or other reasons. So we create a custom repo on the remote/zabbix server so that we can install zabbix using rpms Here is how we are planning to do this. Download all the dependency rpms on a machine which has internet connection, using yum-downloadonly or repotrack . Transfer all the rpms to the remote server. Create a repo on the remote server. Update yum configuration. Install. NOTE: This method can be used to install any application, but here we have used zabbix as we had this requirement for a zabbix server. Download dependent rpms . On a machine which has internet connection install the package below. And download all the rpms . Make sure the system are similar (not required to be identical - At-least the OS should be of same version) mkdir /zabbix_rpms yum install yum-downloadonly Downloading all the rpms to location /zabbix_rpms/ ,...

Access Filter in SSSD `ldap_access_filter` [SSSD Access denied / Permission denied ]

Access Filter Setup with SSSD ldap_access_filter (string) If using access_provider = ldap , this option is mandatory. It specifies an LDAP search filter criteria that must be met for the user to be granted access on this host. If access_provider = ldap and this option is not set, it will result in all users being denied access. Use access_provider = allow to change this default behaviour. Example: access_provider = ldap ldap_access_filter = memberOf=cn=allowed_user_groups,ou=Groups,dc=example,dc=com Prerequisites yum install sssd Single LDAP Group Under domain/default in /etc/sssd/sssd.conf add: access_provider = ldap ldap_access_filter = memberOf=cn=Group Name,ou=Groups,dc=example,dc=com Multiple LDAP Groups Under domain/default in /etc/sssd/sssd.conf add: access_provider = ldap ldap_access_filter = (|(memberOf=cn=System Adminstrators,ou=Groups,dc=example,dc=com)(memberOf=cn=Database Users,ou=Groups,dc=example,dc=com)) ldap_access_filter accepts standa...