확장기능:대량메시지

From mediawiki.org
This page is a translated version of the page Extension:MassMessage and the translation is 52% complete.
미디어위키 확장 기능 설명서
MassMessage
출시 상태: 안정
구현 특수 문서 , API
설명 사용자가 쉽게 사용자 목록에 메시지를 보내는 것을 허용한다.
만든 이 Kunal Mehta, wctaiwan
최신 버전 0.4.0 (2016-12-06)
호환성 정책 스냅샷은 미디어위키와 함께 릴리스됩니다. Master is not backward compatible.
MediaWiki 1.25+, use REL1_X branches for your version of MediaWiki
라이선스 GNU General Public License 2.0 or later
다운로드
도움말 Help:Extension:MassMessage/ko
  • $wgNamespacesToConvert
  • $wgMassMessageAccountUsername
  • $wgNamespacesToPostIn
  • $wgAllowlistedMassMessageTargets
  • $wgAllowGlobalMessaging
  • $wgMassMessageWikiAliases
  • massmessage
Quarterly downloads 55 (Ranked 90th)
Public wikis using 1,039 (Ranked 257th)
MassMessage 확장 기능 번역 (translatewiki.net에서 가능한 경우)
Vagrant 역할 massmessage
이슈 미해결 작업 · 버그 보고

The MassMessage extension allows a user to send a message to a list of pages via special page Special:MassMessage. For help on how to use the extension, see 도움말:확장기능:대량메시지 . The API documentation can be found at Extension:MassMessage/API .

설치

  • 파일을 다운로드하고 MassMessage 폴더를 extensions/ 디렉토리에 넣어 주세요.
    개발자와 코딩 기여자는 Git을 이용해 확장기능을 다운받는 것이 좋습니다.cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MassMessage
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'MassMessage' );
    
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

환경설정 인자

에 게시 할 네임 스페이스

메시지를 게시 할 때 지정한 네임 스페이스에 게시하십시오. 모든 토크 네임 스페이스는 이미 허용 목록에 있습니다.

$wgNamespacesToPostIn = [ NS_PROJECT ];
변환 할 네임 스페이스

If you want users to be able to provide a link to a User: page, but have the bot post on their User talk: page you can define that here.

$wgNamespacesToConvert = [ NS_USER => NS_USER_TALK ];
사용자 이름

What username the bot should post with. By default, this is "MediaWiki message delivery". If the user already exists, the extension will take over the account. It will be impossible for users to rename the account. You can override the default account name by specifying (for example):

$wgMassMessageAccountUsername = 'MessengerBot';
글로벌 메시징 사용

한 위키에서 다른 위키로 메시지를 보낼지 여부. 만약에 Wikimedia와 같은 wikifarm 설정에서 실행한다면, 로그를 한 곳에서 유지하는 것을 제외한 모든 위키에서 이 기능을 비활성화 할 수 있습니다.

$wgAllowGlobalMessaging = true;

Maintenance script

You can send messages from the command line with

php sendMessages.php --pagelist <page list file> --subject <subject file> --message <message file>

where each line of <page list file> contains a page name followed by a wiki (database) name, separated by a tab.

사용자 권한

  • massmessage - 사용자가 메시지를 보낼 수 있게합니다. 기본적으로 "sysop"사용자 그룹에 할당됩니다.

참고

Extensions which integrate with this one: Echo, LiquidThreads.

Interface

This extension is visible in three places:

같이 보기