Is it possible to /join #channel in IRC in such a way that I can read but not write to the channel? My motivation is to be able to keep an eye on some channels without the risk of fat-fingering some nonsense in there.
Join an IRC channel read-only
951 Views Asked by Matthew Gilliard At
1
There are 1 best solutions below
Related Questions in IRC
- C++ IRC Bot Buffer Error
- Hubot change IRC channel topic
- Connecting to an IRC server, getting Ping timeout without receiving PING message
- Freenode Nick Registration
- Python AttributeError: 'str' object has no attribute 'append' (Specific)
- FASM IRC Bot Prefix
- Creating a 'voicemail' system using Pircbot
- irc server response to JOIN comment
- Meteor: ReferenceError: IRC is not defined
- Browser JavaScript app IRC connection
- Identify sending user, Python IRC
- Node-IRC Bot Issues
- Connect to multiple IRC servers with ExIrc (Elixir)?
- How can I get these Perl scripts to delay?
- error in connecting irc through xchat
Related Questions in IRSSI
- How to send message to specific channel regulary in irssi?
- Connecting to gtalk in irssi errors with 301
- Perl Irssi scripting: How to send msg to a specific channel?
- Join an IRC channel read-only
- irssi dcc stats on channel
- How can I have stable nick in Irssi?
- Error: GLib is required to build irssi
- Regex lookbehind alternative
- IRSSI 'Connection timed out' Issue
- c++ ostream operator overload is not displaying correctly
- How to configure triggers for specific users in IRSSI
- Vim and Tmux rendering error
- Perl Irssi scripting: rename invalid DCC file
- Make Irssi like text frontend in Python using curses or anything available
- Trigger a visitor from the Kiwi IRC Webclient
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Do you mean within irssi? There is
botti, which should let you read a channel without being interactive to the channel. From there, you could justtail -fthe log*. Fromman -k:Alternatively, if you're a chanop you can join the channel and then set usermode +b for that user and they won't be able to send to the channel. Some networks will allow you to set a channel mode such that only registered users can speak, or channel mode +m so that only voiced users can speak, but it varies a lot.
If you gave more information I could give you a more specific answer.
*note: you can create a new window in irssi with no channel joined to it, and have that window run
/exec -o tail ~/irclogs/network/#channelname.log, and it will output everything from that channel via the log you're saving, and be un-interactive.